summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-03-20 08:14:14 +0000
committerGitHub <noreply@github.com>2023-03-20 08:14:14 +0000
commit838ea7cec9b51bb209652ff2d2256eb413a59008 (patch)
treeec2f0519a9dcf875a516ac1bd95f2888b869da8a
parentbef642ea73fc6f1a3d406af4bd1c68ee1ac3dcaf (diff)
Build(deps): Bump thiserror from 1.0.39 to 1.0.40
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.39 to 1.0.40. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.39...1.0.40) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock10
-rw-r--r--Cargo.toml2
-rw-r--r--mqtt-format/Cargo.toml2
3 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a5f75e5..148c5fd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -965,22 +965,22 @@ dependencies = [
[[package]]
name = "thiserror"
-version = "1.0.39"
+version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a5ab016db510546d856297882807df8da66a16fb8c4101cb8b30054b0d5b2d9c"
+checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
-version = "1.0.39"
+version = "1.0.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "5420d42e90af0c38c3290abcca25b9b3bdf379fc9f55c528f53a269d9c9a267e"
+checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
dependencies = [
"proc-macro2",
"quote",
- "syn 1.0.107",
+ "syn 2.0.2",
]
[[package]]
diff --git a/Cargo.toml b/Cargo.toml
index 6a1e6e3..8eaf62b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -37,7 +37,7 @@ dashmap = "5.4.0"
futures = "0.3.27"
mqtt-format = { version = "0.5.0", path = "mqtt-format", features = ["yoke"] }
nom = { version = "7.1.3" }
-thiserror = "1.0.39"
+thiserror = "1.0.40"
tokio = { version = "1.26.0", default-features = false, features = [
"net",
"time",
diff --git a/mqtt-format/Cargo.toml b/mqtt-format/Cargo.toml
index 9fd7a36..1e25ac6 100644
--- a/mqtt-format/Cargo.toml
+++ b/mqtt-format/Cargo.toml
@@ -18,7 +18,7 @@ yoke = ["dep:yoke"]
futures = "0.3.27"
nom = "7.1.3"
nom-supreme = "0.8.0"
-thiserror = "1.0.39"
+thiserror = "1.0.40"
yoke = { version = "0.7.0", features = ["derive"], optional = true }
[dev-dependencies]