Skip to content

Commit b4680b1

Browse files
authored
subscriber: update minimum tracing-core dep to 0.1.28 (#2190)
## Motivation PR #2008 added a new method to the `tracing_core::Subscriber` trait, and modified `tracing-subscriber` to and implement that method. However, that PR did *not* increase the minimum `tracing-core` dependency for the `tracing-subscriber` crate. This means that if a dependent of `tracing-subscriber` updates *only* `tracing-subscriber` dependency version (e.g. by running `cargo update -p tracing-subscriber`), it will not also update its `tracing-core` version to one that contains the new method, and `tracing-subscriber` will fail to compile. This is a common occurrence with projects using Dependabot, for example. ## Solution This commit updates `tracing-subscriber`'s minimum `tracing-core` dep to 0.1.28. Once this merges, I'll release 0.3.13 of `tracing-subscriber` and yank 0.3.12.
1 parent d86d2a4 commit b4680b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tracing-subscriber/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ valuable = ["tracing-core/valuable", "valuable_crate", "valuable-serde", "tracin
3838
local-time = ["time/local-offset"]
3939

4040
[dependencies]
41-
tracing-core = { path = "../tracing-core", version = "0.1.22", default-features = false }
41+
tracing-core = { path = "../tracing-core", version = "0.1.28", default-features = false }
4242

4343
# only required by the filter feature
4444
tracing = { optional = true, path = "../tracing", version = "0.1", default-features = false }

0 commit comments

Comments
 (0)