From 8694486756dc4581ab60226eb30038e78f9d1ac2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 14 Nov 2023 04:00:52 +0000 Subject: [PATCH] Bump the minor-changes group with 2 updates Bumps the minor-changes group with 2 updates: [termcolor](https://github.com/BurntSushi/termcolor) and [tracing-subscriber](https://github.com/tokio-rs/tracing). Updates `termcolor` from 1.3.0 to 1.4.0 - [Commits](https://github.com/BurntSushi/termcolor/compare/1.3.0...1.4.0) 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) --- updated-dependencies: - dependency-name: termcolor dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-changes - dependency-name: tracing-subscriber dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-changes ... Signed-off-by: dependabot[bot] --- Cargo.lock | 14 +++++++------- Cargo.toml | 4 ++-- cli/Cargo.toml | 4 ++-- e2e-tests/rainbow/Cargo.toml | 4 ++-- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac0ff6c..1b9f4d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -895,9 +895,9 @@ dependencies = [ [[package]] name = "termcolor" -version = "1.3.0" +version = "1.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64" +checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449" dependencies = [ "winapi-util", ] @@ -1092,20 +1092,20 @@ dependencies = [ [[package]] name = "tracing-log" -version = "0.1.3" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" dependencies = [ - "lazy_static", "log", + "once_cell", "tracing-core", ] [[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/Cargo.toml b/Cargo.toml index de98cc3..ce5b6f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ serde = { version = "1.0", optional = true, features = ["derive"] } serde_json = { version = "1.0", optional = true } tracing = { version = "0.1.40", optional = true } pretty_assertions = { version = "1.0.0", optional = true } -termcolor = "1.3.0" +termcolor = "1.4.0" unicode-width = "0.1.11" [dev-dependencies] @@ -40,7 +40,7 @@ doc-comment = "0.3.3" test-casing = "0.1.2" toml = "0.8.2" tracing-capture = "0.1.0" -tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } version-sync = "0.9.2" [features] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index cd86923..c0470e1 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -21,9 +21,9 @@ handlebars = "4.5.0" humantime = "2.1.0" is-terminal = "0.4.9" serde_json = "1.0" -termcolor = "1.3.0" +termcolor = "1.4.0" toml = "0.8.2" -tracing-subscriber = { version = "0.3.16", features = ["env-filter"], optional = true } +tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true } term-transcript = { version = "0.3.0", path = ".." } diff --git a/e2e-tests/rainbow/Cargo.toml b/e2e-tests/rainbow/Cargo.toml index 774e6f4..b9b6ade 100644 --- a/e2e-tests/rainbow/Cargo.toml +++ b/e2e-tests/rainbow/Cargo.toml @@ -16,7 +16,7 @@ path = "src/bin/repl.rs" [dependencies] anyhow = "1.0.40" -termcolor = "1.3.0" +termcolor = "1.4.0" [dependencies.term-transcript] path = "../.." @@ -28,7 +28,7 @@ pretty_assertions = "1.0.0" tempfile = "3.8.1" test-casing = "0.1.2" tracing = "0.1.40" -tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } [features] portable-pty = ["term-transcript/portable-pty"]