chore(deps): enable tracing default features (#2693)

This commit is contained in:
Matthias Seitz
2023-05-16 15:14:39 +02:00
committed by GitHub
parent 2436e019c6
commit e9a5b867c9
3 changed files with 8 additions and 3 deletions

View File

@ -46,6 +46,10 @@ members = [
exclude = ["crate-template"] exclude = ["crate-template"]
default-members = ["bin/reth"] default-members = ["bin/reth"]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"
# Like release, but with full debug symbols. Useful for e.g. `perf`. # Like release, but with full debug symbols. Useful for e.g. `perf`.
[profile.debug-fast] [profile.debug-fast]
inherits = "release" inherits = "release"
@ -61,5 +65,6 @@ incremental = false
# patched for quantity U256 responses <https://github.com/recmo/uint/issues/224> # patched for quantity U256 responses <https://github.com/recmo/uint/issues/224>
ruint = { git = "https://github.com/paradigmxyz/uint" } ruint = { git = "https://github.com/paradigmxyz/uint" }
[workspace.dependencies] [workspace.dependencies]
tracing = { version = "^0.1.0", default-features = false } tracing = "^0.1.0"

View File

@ -15,7 +15,7 @@ tracing-futures = "0.2"
futures-util = "0.3" futures-util = "0.3"
## misc ## misc
tracing = { workspace = true, default-features = false } tracing = { workspace = true }
thiserror = "1.0" thiserror = "1.0"
dyn-clone = "1.0" dyn-clone = "1.0"

View File

@ -8,7 +8,7 @@ readme = "README.md"
description = "tracing helpers" description = "tracing helpers"
[dependencies] [dependencies]
tracing = { workspace = true, default-features = false } tracing = { workspace = true }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] } tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
tracing-appender = "0.2" tracing-appender = "0.2"
tracing-journald = "0.3" tracing-journald = "0.3"