mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore(deps): enable tracing default features (#2693)
This commit is contained in:
@ -46,6 +46,10 @@ members = [
|
||||
exclude = ["crate-template"]
|
||||
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`.
|
||||
[profile.debug-fast]
|
||||
inherits = "release"
|
||||
@ -61,5 +65,6 @@ incremental = false
|
||||
# patched for quantity U256 responses <https://github.com/recmo/uint/issues/224>
|
||||
ruint = { git = "https://github.com/paradigmxyz/uint" }
|
||||
|
||||
|
||||
[workspace.dependencies]
|
||||
tracing = { version = "^0.1.0", default-features = false }
|
||||
tracing = "^0.1.0"
|
||||
|
||||
@ -15,7 +15,7 @@ tracing-futures = "0.2"
|
||||
futures-util = "0.3"
|
||||
|
||||
## misc
|
||||
tracing = { workspace = true, default-features = false }
|
||||
tracing = { workspace = true }
|
||||
thiserror = "1.0"
|
||||
dyn-clone = "1.0"
|
||||
|
||||
|
||||
@ -8,7 +8,7 @@ readme = "README.md"
|
||||
description = "tracing helpers"
|
||||
|
||||
[dependencies]
|
||||
tracing = { workspace = true, default-features = false }
|
||||
tracing = { workspace = true }
|
||||
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
||||
tracing-appender = "0.2"
|
||||
tracing-journald = "0.3"
|
||||
|
||||
Reference in New Issue
Block a user