From bc8265a638e7111f82bfcf07b3453289c65b5b60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 00:49:19 +0000 Subject: [PATCH] chore(deps): bump the patch group with 2 updates Bumps the patch group with 2 updates: [tracing-subscriber](https://github.com/tokio-rs/tracing) and [http](https://github.com/hyperium/http). Updates `tracing-subscriber` from 0.3.17 to 0.3.18 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-subscriber-0.3.17...tracing-subscriber-0.3.18) Updates `http` from 0.2.10 to 0.2.11 - [Release notes](https://github.com/hyperium/http/releases) - [Changelog](https://github.com/hyperium/http/blob/v0.2.11/CHANGELOG.md) - [Commits](https://github.com/hyperium/http/compare/v0.2.10...v0.2.11) --- updated-dependencies: - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch - dependency-name: http dependency-type: indirect update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ crates/youki/Cargo.toml | 2 +- tests/integration_test/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c6f135bb..9063f4e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1577,9 +1577,9 @@ dependencies = [ [[package]] name = "http" -version = "0.2.10" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f95b9abcae896730d42b78e09c155ed4ddf82c07b4de772c64aee5b2d8b7c150" +checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" dependencies = [ "bytes", "fnv", @@ -4116,9 +4116,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", @@ -4137,9 +4137,9 @@ dependencies = [ [[package]] name = "tracing-subscriber" -version = "0.3.17" +version = "0.3.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" +checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b" dependencies = [ "matchers", "nu-ansi-term", diff --git a/crates/youki/Cargo.toml b/crates/youki/Cargo.toml index f2106c80..b7c6dd02 100644 --- a/crates/youki/Cargo.toml +++ b/crates/youki/Cargo.toml @@ -47,7 +47,7 @@ wasmedge-sdk = { version = "0.13.0", optional = true } wasmtime = {version = "10.0.2", optional = true } wasmtime-wasi = {version = "10.0.2", optional = true } tracing = { version = "0.1.40", features = ["attributes"]} -tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] } +tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] } tracing-journald = "0.3.0" [dev-dependencies] diff --git a/tests/integration_test/Cargo.toml b/tests/integration_test/Cargo.toml index 79457af5..f5b9dc16 100644 --- a/tests/integration_test/Cargo.toml +++ b/tests/integration_test/Cargo.toml @@ -25,7 +25,7 @@ which = "5.0.0" tempfile = "3" scopeguard = "1.2.0" tracing = { version = "0.1.40", features = ["attributes"]} -tracing-subscriber = { version = "0.3.16", features = ["json", "env-filter"] } +tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] } [dependencies.clap] version = "4.1.6"