diff --git a/Cargo.lock b/Cargo.lock index 3523ae2fa..66c4fab9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -845,16 +845,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "dashmap" -version = "4.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c" -dependencies = [ - "cfg-if", - "num_cpus", -] - [[package]] name = "data-encoding" version = "2.8.0" @@ -1193,17 +1183,6 @@ version = "0.3.31" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" -[[package]] -name = "futures-executor" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - [[package]] name = "futures-io" version = "0.3.31" @@ -2092,12 +2071,6 @@ dependencies = [ "toml", ] -[[package]] -name = "hermit-abi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" - [[package]] name = "hex" version = "0.3.2" @@ -3241,7 +3214,7 @@ dependencies = [ "rustc_version", "smallvec", "tagptr", - "thiserror", + "thiserror 1.0.69", "uuid", ] @@ -3317,16 +3290,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "num_cpus" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" -dependencies = [ - "hermit-abi", - "libc", -] - [[package]] name = "object" version = "0.32.2" @@ -3394,23 +3357,16 @@ dependencies = [ [[package]] name = "opentelemetry" -version = "0.17.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8" +checksum = "236e667b670a5cdf90c258f5a55794ec5ac5027e960c224bff8367a59e1e6426" dependencies = [ - "async-trait", - "crossbeam-channel", - "dashmap", - "fnv", - "futures-channel", - "futures-executor", - "futures-util", + "futures-core", + "futures-sink", "js-sys", - "lazy_static", - "percent-encoding", - "pin-project", - "rand", - "thiserror", + "pin-project-lite", + "thiserror 2.0.12", + "tracing", ] [[package]] @@ -3727,7 +3683,7 @@ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" dependencies = [ "getrandom 0.2.15", "libredox", - "thiserror", + "thiserror 1.0.69", ] [[package]] @@ -4742,7 +4698,7 @@ dependencies = [ "tendermint", "tendermint-config", "tendermint-proto", - "thiserror", + "thiserror 1.0.69", "time", "tokio", "tracing", @@ -4757,7 +4713,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.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" +dependencies = [ + "thiserror-impl 2.0.12", ] [[package]] @@ -4771,6 +4736,17 @@ dependencies = [ "syn 2.0.98", ] +[[package]] +name = "thiserror-impl" +version = "2.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.98", +] + [[package]] name = "thread_local" version = "1.1.8" @@ -4824,7 +4800,7 @@ dependencies = [ "rand", "rustc-hash", "sha2 0.10.8", - "thiserror", + "thiserror 1.0.69", "unicode-normalization", "wasm-bindgen", "zeroize", @@ -5159,7 +5135,7 @@ dependencies = [ "rustls 0.22.4", "rustls-pki-types", "sha1", - "thiserror", + "thiserror 1.0.69", "url", "utf-8", ] diff --git a/crates/cosmos/cosmos-relayer/Cargo.toml b/crates/cosmos/cosmos-relayer/Cargo.toml index 1053e7a37..253229bc4 100644 --- a/crates/cosmos/cosmos-relayer/Cargo.toml +++ b/crates/cosmos/cosmos-relayer/Cargo.toml @@ -58,5 +58,5 @@ futures = { workspace = true } http = { workspace = true } secp256k1 = { workspace = true } -opentelemetry = { version = "0.17.0", features = ["metrics"] } +opentelemetry = { version = "0.28.0", features = ["metrics"] } moka = { version = "0.12", features = ["future"] } \ No newline at end of file diff --git a/crates/cosmos/cosmos-wasm-relayer/Cargo.toml b/crates/cosmos/cosmos-wasm-relayer/Cargo.toml index 72b917a4b..15c81df70 100644 --- a/crates/cosmos/cosmos-wasm-relayer/Cargo.toml +++ b/crates/cosmos/cosmos-wasm-relayer/Cargo.toml @@ -57,6 +57,6 @@ http = { workspace = true } rand = { workspace = true } sha2 = { workspace = true } -opentelemetry = { version = "0.17.0", features = ["metrics"] } +opentelemetry = { version = "0.28.0", features = ["metrics"] } moka = { version = "0.12", features = ["future"] } stable-eyre = { version = "0.2.2" } \ No newline at end of file