Skip to content

Commit 995a5b5

Browse files
chore(deps): Bump tracing-subscriber from 0.3.19 to 0.3.20 in the cargo group (#23674)
* chore(deps): Bump tracing-subscriber in the cargo group Bumps the cargo group with 1 update: [tracing-subscriber](https://github.com/tokio-rs/tracing). Updates `tracing-subscriber` from 0.3.19 to 0.3.20 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](tokio-rs/tracing@tracing-subscriber-0.3.19...tracing-subscriber-0.3.20) --- updated-dependencies: - dependency-name: tracing-subscriber dependency-version: 0.3.20 dependency-type: direct:production dependency-group: cargo ... Signed-off-by: dependabot[bot] <[email protected]> * cargo vdev build license * Make tracing-subscriber a workspace dependency --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas <[email protected]>
1 parent b4a78c8 commit 995a5b5

File tree

7 files changed

+27
-45
lines changed

7 files changed

+27
-45
lines changed

Cargo.lock

Lines changed: 20 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ toml = { version = "0.9.4", default-features = false, features = ["serde", "disp
188188
tonic = { version = "0.11", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] }
189189
tonic-build = { version = "0.11", default-features = false, features = ["transport", "prost"] }
190190
tracing = { version = "0.1.34", default-features = false }
191+
tracing-subscriber = { version = "0.3.20", default-features = false, features = ["fmt"] }
191192
uuid = { version = "1.17.0", features = ["v4", "v7", "serde"] }
192193
vector-lib = { path = "lib/vector-lib", default-features = false, features = ["vrl"] }
193194
vector-config = { path = "lib/vector-config" }
@@ -236,7 +237,7 @@ console-subscriber = { version = "0.4.1", default-features = false, optional = t
236237
tracing.workspace = true
237238
tracing-core = { version = "0.1.26", default-features = false }
238239
tracing-futures = { version = "0.2.5", default-features = false, features = ["futures-03"] }
239-
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["ansi", "env-filter", "fmt", "json", "registry", "tracing-log"] }
240+
tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "fmt", "json", "registry", "tracing-log"] }
240241
tracing-tower = { git = "https://github.com/tokio-rs/tracing", default-features = false, rev = "e0642d949891546a3bb7e47080365ee7274f05cd" }
241242

242243
# Metrics

LICENSE-3rdparty.csv

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,6 @@ openssl-probe,https://github.com/alexcrichton/openssl-probe,MIT OR Apache-2.0,Al
458458
openssl-sys,https://github.com/sfackler/rust-openssl,MIT,"Alex Crichton <[email protected]>, Steven Fackler <[email protected]>"
459459
ordered-float,https://github.com/reem/rust-ordered-float,MIT,"Jonathan Reem <[email protected]>, Matt Brubeck <[email protected]>"
460460
outref,https://github.com/Nugine/outref,MIT,The outref Authors
461-
overload,https://github.com/danaugrs/overload,MIT,Daniel Salvadori <[email protected]>
462461
owo-colors,https://github.com/owo-colors/owo-colors,MIT,jam1garner <[email protected]>
463462
p256,https://github.com/RustCrypto/elliptic-curves/tree/master/p256,Apache-2.0 OR MIT,RustCrypto Developers
464463
p384,https://github.com/RustCrypto/elliptic-curves/tree/master/p384,Apache-2.0 OR MIT,"RustCrypto Developers, Frank Denis <[email protected]>"
@@ -536,11 +535,9 @@ redox_syscall,https://gitlab.redox-os.org/redox-os/syscall,MIT,Jeremy Soller <ja
536535
redox_users,https://gitlab.redox-os.org/redox-os/users,MIT,"Jose Narvaez <[email protected]>, Wesley Hershberger <[email protected]>"
537536
ref-cast,https://github.com/dtolnay/ref-cast,MIT OR Apache-2.0,David Tolnay <[email protected]>
538537
regex,https://github.com/rust-lang/regex,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <[email protected]>"
539-
regex-automata,https://github.com/BurntSushi/regex-automata,Unlicense OR MIT,Andrew Gallant <[email protected]>
540538
regex-automata,https://github.com/rust-lang/regex/tree/master/regex-automata,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <[email protected]>"
541539
regex-filtered,https://github.com/ua-parser/uap-rust,BSD-3-Clause,The regex-filtered Authors
542540
regex-lite,https://github.com/rust-lang/regex/tree/master/regex-lite,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <[email protected]>"
543-
regex-syntax,https://github.com/rust-lang/regex,MIT OR Apache-2.0,The Rust Project Developers
544541
regex-syntax,https://github.com/rust-lang/regex/tree/master/regex-syntax,MIT OR Apache-2.0,"The Rust Project Developers, Andrew Gallant <[email protected]>"
545542
rend,https://github.com/djkoloski/rend,MIT,David Koloski <[email protected]>
546543
reqwest,https://github.com/seanmonstar/reqwest,MIT OR Apache-2.0,Sean McArthur <[email protected]>

lib/tracing-limit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ license = "MPL-2.0"
88

99
[dependencies]
1010
tracing-core = { version = "0.1", default-features = false }
11-
tracing-subscriber = { version = "0.3", default-features = false, features = ["registry", "std"] }
11+
tracing-subscriber = { workspace = true, features = ["registry", "std"] }
1212
dashmap = { version = "6.1.0", default-features = false }
1313

1414
[dev-dependencies]
1515
criterion = "0.7"
1616
tracing = "0.1.34"
1717
mock_instant = { version = "0.6" }
18-
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["env-filter", "fmt"] }
18+
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
1919

2020
[[bench]]
2121
name = "limit"

lib/vector-buffers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ serde_yaml.workspace = true
4949
temp-dir = "0.1.16"
5050
tokio-test = "0.4.4"
5151
tracing-fluent-assertions = { version = "0.3" }
52-
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["env-filter", "fmt", "registry", "std", "ansi"] }
52+
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt", "registry", "std", "ansi"] }
5353

5454
[[bench]]
5555
name = "sized_records"

lib/vector-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ noisy_float = "0.2.0"
9292
rand.workspace = true
9393
rand_distr.workspace = true
9494
serde_yaml = { version = "0.9.34", default-features = false }
95-
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["env-filter", "fmt", "ansi", "registry"] }
95+
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt", "ansi", "registry"] }
9696
vector-common = { path = "../vector-common", default-features = false, features = ["test"] }
9797

9898
[features]

lib/vector-vrl/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ clap.workspace = true
1616
glob.workspace = true
1717
serde.workspace = true
1818
serde_json.workspace = true
19-
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
19+
tracing-subscriber = { workspace = true, features = ["fmt"] }
2020

2121
[target.'cfg(not(target_env = "msvc"))'.dependencies]
2222
tikv-jemallocator = { version = "0.6.0" }

0 commit comments

Comments
 (0)