• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "tracing-log"
3version = "0.1.3"
4authors = ["Tokio Contributors <team@tokio.rs>"]
5edition = "2018"
6repository = "https://github.com/tokio-rs/tracing"
7homepage = "https://tokio.rs"
8description = """
9Provides compatibility between `tracing` and the `log` crate.
10"""
11categories = [
12    "development-tools::debugging",
13    "asynchronous",
14]
15keywords = ["logging", "tracing", "log"]
16license = "MIT"
17readme = "README.md"
18rust-version = "1.49.0"
19
20[features]
21default = ["log-tracer", "trace-logger", "std"]
22std = ["log/std"]
23log-tracer = []
24trace-logger = []
25interest-cache = ["lru", "ahash"]
26
27[dependencies]
28tracing-core = { path = "../tracing-core", version = "0.1.28"}
29log = { version = "0.4.17" }
30once_cell = "1.13.0"
31env_logger = { version = "0.8.4", optional = true }
32lru = { version = "0.7.7", optional = true }
33ahash = { version = "0.7.6", optional = true }
34
35[dev-dependencies]
36tracing = { path = "../tracing", version = "0.1.35"}
37tracing-subscriber = { path = "../tracing-subscriber" }
38criterion = { version = "0.3.6", default-features = false }
39
40[badges]
41maintenance = { status = "actively-maintained" }
42
43[package.metadata.docs.rs]
44all-features = true
45rustdoc-args = ["--cfg", "docsrs"]
46
47[[bench]]
48name = "logging"
49harness = false
50