- Removes the default implementation. - Makes tracing_core::span::Current::unknown public so that implementers of Collect can use it if they didn't implement current_span() before. - Copy the old default implementation to all implementers of Collect. Co-authored-by: Eliza Weisman <eliza@buoyant.io>
12 lines
267 B
TOML
12 lines
267 B
TOML
[workspace]
|
|
|
|
[package]
|
|
name = "test-log-support"
|
|
version = "0.1.0"
|
|
publish = false
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tracing-core = { path= "../../tracing-core"}
|
|
tracing = { path = "..", features = ["log", "log-always"] }
|
|
log = { version = "0.4", features = ["std"] }
|