diff --git a/Cargo.lock b/Cargo.lock index 15dc31ef4..b03eaf51f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14682,9 +14682,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" [[package]] name = "tracing" -version = "0.1.40" +version = "0.1.41" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" dependencies = [ "log", "pin-project-lite 0.2.14", @@ -14694,9 +14694,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.27" +version = "0.1.28" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" dependencies = [ "proc-macro2", "quote", @@ -14723,9 +14723,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.32" +version = "0.1.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" dependencies = [ "once_cell", "valuable", diff --git a/crates/client/Cargo.toml b/crates/client/Cargo.toml index 869bc5dd1..3705f5062 100644 --- a/crates/client/Cargo.toml +++ b/crates/client/Cargo.toml @@ -17,7 +17,7 @@ num ="0.4.3" thiserror ="2.0.3" futures ="0.3" sp-core ={ version="31.0.0", default-features=false, features=["full_crypto", "serde"] } -tracing ="0.1.37" +tracing ="0.1.41" rand ={ version="0.8", default-features=false } anyhow ="1.0.93" diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index 572a14119..da6ce444a 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -24,7 +24,7 @@ thiserror ="2.0.3" snow ="0.9.6" getrandom ={ version="0.2", features=["js"] } rand_core ={ version="0.6.4", features=["getrandom"] } -tracing ="0.1.37" +tracing ="0.1.41" bincode ="1.3.3" serde_json ="1.0" zeroize ="1.8.1" diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index 2aea25152..094427f9e 100644 --- a/crates/testing-utils/Cargo.toml +++ b/crates/testing-utils/Cargo.toml @@ -29,5 +29,5 @@ rand ="0.8.5" tdx-quote ={ version="0.0.1", features=["mock"] } # Logging -tracing ="0.1.37" +tracing ="0.1.41" tracing-subscriber={ version="0.3.18", features=["env-filter"] } diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index fdb0ce3f7..546709293 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -49,7 +49,7 @@ entropy-client ={ version="0.3.0", path="../client", default-features=false, fe entropy-programs-runtime={ git="https://github.com/entropyxyz/programs.git", branch="master" } # Logging -tracing ="0.1.37" +tracing ="0.1.41" tracing-subscriber ={ version="0.3.18", features=["env-filter", "json"] } tracing-loki ="0.2" tower-http ={ version="0.6.2", features=["trace", "cors"] }