Skip to content

Commit

Permalink
fix(console): remove tracing-subscriber 0.2 from dependencies (#404)
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
hds authored and hawkw committed Sep 29, 2023
1 parent c13085e commit 768534a
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 25 deletions.
35 changes: 12 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tokio-console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-subscriber = { version = "0.3.0", features = ["env-filter"] }
tracing-journald = { version = "0.2", optional = true }
prost-types = "0.11"
crossterm = { version = "0.20", features = ["event-stream"] }
color-eyre = { version = "0.5", features = ["issue-url"] }
color-eyre = { version = "0.6", features = ["issue-url"] }
hdrhistogram = { version = "7.3.0", default-features = false, features = ["serialization"] }
h2 = "0.3"
regex = "1.5"
Expand Down
2 changes: 1 addition & 1 deletion xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ tonic-build = { version = "0.8", default-features = false, features = [
"prost", "transport"
] }
clap = { version = "3", features = ["derive"] }
color-eyre = "0.5"
color-eyre = "0.6"

0 comments on commit 768534a

Please sign in to comment.