diff --git a/Cargo.lock b/Cargo.lock index af4db399..38266ad8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ dependencies = [ "serde_json", "sha2", "sha3", - "thiserror", + "thiserror 2.0.15", "time", "tinystr", "tokio", @@ -1381,7 +1381,7 @@ dependencies = [ "rustc-hash", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", "tokio", "tracing", ] @@ -1418,7 +1418,7 @@ dependencies = [ "serde", "serde_json", "soketto", - "thiserror", + "thiserror 1.0.69", "tokio", "tokio-stream", "tokio-util", @@ -1435,7 +1435,7 @@ dependencies = [ "http", "serde", "serde_json", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -2553,7 +2553,16 @@ version = "1.0.69" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" dependencies = [ - "thiserror-impl", + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d76d3f064b981389ecb4b6b7f45a0bf9fdac1d5b9204c7bd6714fecc302850" +dependencies = [ + "thiserror-impl 2.0.15", ] [[package]] @@ -2567,6 +2576,17 @@ dependencies = [ "syn 2.0.104", ] +[[package]] +name = "thiserror-impl" +version = "2.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d29feb33e986b6ea906bd9c3559a856983f92371b3eaa5e83782a351623de0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.104", +] + [[package]] name = "thread_local" version = "1.1.9" diff --git a/Cargo.toml b/Cargo.toml index e9fd5f03..279ea491 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ pbkdf2 = { version = "0.12.0", default-features = false } rand = "0.8.5" sha2 = "0.10.9" sha3 = "0.10.2" -thiserror = "1.0.31" +thiserror = "2.0.15" time = "0.3.41" tokio = { version = "1.47.0", features = ["time"] } tonic = "0.12.3"