tracing/tracing/test-log-support/Cargo.toml
Ole Schönburg 944abacb2d
core: Remove default impl of Collect::current_span (#1268)
- 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>
2021-06-21 12:14:44 -04:00

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"] }