diff --git a/Cargo.lock b/Cargo.lock index 4fba569..7edc0a3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4475,9 +4475,9 @@ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" -version = "0.1.41" +version = "0.1.44" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" dependencies = [ "log", "pin-project-lite", @@ -4487,9 +4487,9 @@ dependencies = [ [[package]] name = "tracing-attributes" -version = "0.1.30" +version = "0.1.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", @@ -4498,9 +4498,9 @@ dependencies = [ [[package]] name = "tracing-core" -version = "0.1.34" +version = "0.1.36" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" dependencies = [ "once_cell", "valuable", diff --git a/bin/numo/Cargo.toml b/bin/numo/Cargo.toml index 3f76a78..b87bf0e 100644 --- a/bin/numo/Cargo.toml +++ b/bin/numo/Cargo.toml @@ -21,7 +21,7 @@ clap = { version = "4.2", features = ["derive", "env"] } dotenv = "0.15" ## logging -tracing = "0.1.41" +tracing = "0.1.44" tracing-subscriber = { version = "0.3", features = ["env-filter"] } ## misc diff --git a/crates/artemis-core/Cargo.toml b/crates/artemis-core/Cargo.toml index de7b97a..4a5b5b0 100644 --- a/crates/artemis-core/Cargo.toml +++ b/crates/artemis-core/Cargo.toml @@ -24,5 +24,5 @@ jsonrpsee = { version = "0.19", features = ["client", "async-client"] } ## misc anyhow = "1.0.70" thiserror = "1.0.40" -tracing = "0.1.41" +tracing = "0.1.44" tower = "0.4.13" diff --git a/crates/strategies/numo-arb/Cargo.toml b/crates/strategies/numo-arb/Cargo.toml index 94b8f10..0af622f 100644 --- a/crates/strategies/numo-arb/Cargo.toml +++ b/crates/strategies/numo-arb/Cargo.toml @@ -17,6 +17,6 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] } ## misc anyhow = "1.0.70" -tracing = "0.1.41" +tracing = "0.1.44" serde = { version = "1", features = ["derive"] } serde_json = "1"