From da86f5bbbaed65c33c07b8baa81f13b0c9aa1082 Mon Sep 17 00:00:00 2001 From: Silas Alberti Date: Thu, 5 Dec 2024 10:33:13 -0800 Subject: [PATCH] chore: update tracing-subscriber to 0.3.18 for NO_COLOR support (#146) This update adds support for the NO_COLOR environment variable in tracing output, which allows suppressing ANSI color codes in log output. This is particularly useful when running bore as a Windows service. Fixes #65 Co-authored-by: devin-ai-integration[bot] <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b361223..237a744 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -892,20 +892,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.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" dependencies = [ "nu-ansi-term", "sharded-slab", diff --git a/Cargo.toml b/Cargo.toml index 6a68304..9d0591f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ sha2 = "0.10.2" tokio = { version = "1.17.0", features = ["rt-multi-thread", "io-util", "macros", "net", "time"] } tokio-util = { version = "0.7.1", features = ["codec"] } tracing = "0.1.32" -tracing-subscriber = "0.3.10" +tracing-subscriber = "0.3.18" uuid = { version = "1.2.1", features = ["serde", "v4"] } [dev-dependencies]