diff --git a/Cargo.lock b/Cargo.lock index bd3b7d382c833..e696380eaaddc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9214,12 +9214,12 @@ dependencies = [ [[package]] name = "tracing-log" -version = "0.1.3" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" dependencies = [ - "lazy_static", "log", + "once_cell", "tracing-core 0.1.30", ] diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index cc9b8abad433b..e683858f86f3a 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -56,7 +56,7 @@ tonic = { version = "0.10", default-features = false, features = ["transport"] } tower = { version = "0.4", default-features = false, features = ["util"] } tracing = { version = "0.1.34", default-features = false } tracing-core = { version = "0.1.26", default-features = false } -tracing-log = { version = "0.1.3", default-features = false } +tracing-log = { version = "0.1.4", default-features = false } tracing-subscriber = { version = "0.3.17", default-features = false, features = ["std"] } typetag = { version = "0.2.13", default-features = false } twox-hash = { version = "1.6.3", default-features = false }