Skip to content

Commit 768534a

Browse files
hdshawkw
authored andcommitted
fix(console): remove tracing-subscriber 0.2 from dependencies (#404)
The `color-eyre` crate was previously on version 0.5. This version depends on `tracing-subscriber` 0.2, meaning that we had 2 different veresions of `tracing-subscriber` in our dependency tree. This change updates `color-eyre` to 0.6, which depends on `tracing-subscriber` 0.3, the same as `console-subscriber`.
1 parent c13085e commit 768534a

File tree

3 files changed

+14
-25
lines changed

3 files changed

+14
-25
lines changed

Cargo.lock

+12-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tokio-console/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
3939
tracing-journald = { version = "0.2", optional = true }
4040
prost-types = "0.11"
4141
crossterm = { version = "0.20", features = ["event-stream"] }
42-
color-eyre = { version = "0.5", features = ["issue-url"] }
42+
color-eyre = { version = "0.6", features = ["issue-url"] }
4343
hdrhistogram = { version = "7.3.0", default-features = false, features = ["serialization"] }
4444
h2 = "0.3"
4545
regex = "1.5"

xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ tonic-build = { version = "0.8", default-features = false, features = [
1111
"prost", "transport"
1212
] }
1313
clap = { version = "3", features = ["derive"] }
14-
color-eyre = "0.5"
14+
color-eyre = "0.6"

0 commit comments

Comments
 (0)