diff --git a/Cargo.lock b/Cargo.lock index 32ae5f20..ae35f6dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3237,9 +3237,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.16" +version = "0.3.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" +checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" dependencies = [ "matchers", "once_cell", diff --git a/air-interpreter/Cargo.toml b/air-interpreter/Cargo.toml index e6974e0b..c008cc6b 100644 --- a/air-interpreter/Cargo.toml +++ b/air-interpreter/Cargo.toml @@ -31,7 +31,7 @@ serde = { version = "1.0.159", features = [ "derive", "rc" ] } serde_json = "1.0.95" tracing = "0.1.37" # exclude tracing-log feature that interferes with the log crate: -tracing-subscriber = { version = "0.3.16", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] } +tracing-subscriber = { version = "0.3.17", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] } [features] # indicates that this library should be compiled for the marine target, diff --git a/tools/cli/air/Cargo.toml b/tools/cli/air/Cargo.toml index 33bada9e..ccdf98a0 100644 --- a/tools/cli/air/Cargo.toml +++ b/tools/cli/air/Cargo.toml @@ -22,7 +22,7 @@ clap = { version = "4.2.2", features = ["derive", "env"] } itertools = "0.10.5" serde = { version = "1.0.159", features = ["derive"] } serde_json = "1.0.95" -tracing-subscriber = { version = "0.3.16", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] } +tracing-subscriber = { version = "0.3.17", default-features = false, features = [ "env-filter", "json", "smallvec", "time", "fmt" ] } atty = "0.2.14" termcolor = "1.2.0"