From b86bf5f2e11fec00fb25eed77ec0fe0ba2ca7a96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Oct 2023 01:41:46 +0000 Subject: [PATCH] build(deps): bump the deps group with 2 updates (#1475) Bumps the deps group with 2 updates: [tracing-log](https://github.com/tokio-rs/tracing) and [toml_edit](https://github.com/toml-rs/toml). Updates `tracing-log` from 0.1.4 to 0.2.0 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-log-0.1.4...tracing-log-0.2.0) Updates `toml_edit` from 0.20.5 to 0.20.7 - [Commits](https://github.com/toml-rs/toml/compare/v0.20.5...v0.20.7) --- updated-dependencies: - dependency-name: tracing-log dependency-type: direct:production update-type: version-update:semver-minor dependency-group: deps - dependency-name: toml_edit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 14 +++++++------- crates/bin/Cargo.toml | 2 +- crates/binstalk-manifests/Cargo.toml | 2 +- crates/binstalk-registry/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) 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]