diff --git a/Cargo.lock b/Cargo.lock index b400f8ce..47b27aca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -341,7 +341,7 @@ dependencies = [ "serde_json", "tempfile", "thiserror", - "toml_edit 0.20.5", + "toml_edit 0.20.7", "url", ] @@ -367,7 +367,7 @@ dependencies = [ "tempfile", "thiserror", "tokio", - "toml_edit 0.20.5", + "toml_edit 0.20.7", "tracing", "url", ] @@ -3774,7 +3774,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.20.5", + "toml_edit 0.20.7", ] [[package]] @@ -3799,9 +3799,9 @@ dependencies = [ [[package]] name = "toml_edit" -version = "0.20.5" +version = "0.20.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "782bf6c2ddf761c1e7855405e8975472acf76f7f36d0d4328bd3b7a2fae12a85" +checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" dependencies = [ "indexmap 2.0.2", "serde", @@ -3851,9 +3851,9 @@ dependencies = [ [[package]] name = "tracing-log" -version = "0.1.4" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ "log", "once_cell", diff --git a/crates/bin/Cargo.toml b/crates/bin/Cargo.toml index 94a5f99d..e66ff137 100644 --- a/crates/bin/Cargo.toml +++ b/crates/bin/Cargo.toml @@ -41,7 +41,7 @@ tempfile = "3.5.0" tokio = { version = "1.28.2", features = ["rt-multi-thread", "signal"], default-features = false } tracing-core = "0.1.32" tracing = { version = "0.1.39", default-features = false } -tracing-log = { version = "0.1.3", default-features = false } +tracing-log = { version = "0.2.0", default-features = false } tracing-subscriber = { version = "0.3.17", features = ["fmt", "json", "ansi"], default-features = false } [build-dependencies] diff --git a/crates/binstalk-manifests/Cargo.toml b/crates/binstalk-manifests/Cargo.toml index 5bc2ce93..d4f60dbb 100644 --- a/crates/binstalk-manifests/Cargo.toml +++ b/crates/binstalk-manifests/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0.163", features = ["derive"] } serde-tuple-vec-map = "1.0.1" serde_json = "1.0.107" thiserror = "1.0.40" -toml_edit = { version = "0.20.0", features = ["serde"] } +toml_edit = { version = "0.20.7", features = ["serde"] } url = { version = "2.3.1", features = ["serde"] } [dev-dependencies] diff --git a/crates/binstalk-registry/Cargo.toml b/crates/binstalk-registry/Cargo.toml index 5442a3e8..f620d366 100644 --- a/crates/binstalk-registry/Cargo.toml +++ b/crates/binstalk-registry/Cargo.toml @@ -34,7 +34,7 @@ url = "2.3.1" [dev-dependencies] tokio = { version = "1", features = ["rt-multi-thread", "macros"] } -toml_edit = { version = "0.20.0", features = ["serde"] } +toml_edit = { version = "0.20.7", features = ["serde"] } binstalk-downloader = { version = "0.9.3", path = "../binstalk-downloader", default-features = false, features = ["rustls"] } [features]