summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2023-03-20 08:16:24 +0000
committerGitHub <noreply@github.com>2023-03-20 08:16:24 +0000
commit3920508d5083a16ef7a964e656e1c758eda5a260 (patch)
tree6f70237621a39373a1574a6fb336a940410a5d39
parentf367de30296a6adadad6137f471707371ffa5582 (diff)
parent838ea7cec9b51bb209652ff2d2256eb413a59008 (diff)
Merge #189
189: Build(deps): Bump thiserror from 1.0.39 to 1.0.40 r=matthiasbeyer a=dependabot[bot] Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.39 to 1.0.40. Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.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 adf9ab0..f75ab7c 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 d10d0b2..4ab6437 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]