rust/compiler/rustc_log/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
400 B
TOML
Raw Normal View History

2022-01-04 08:32:52 +08:00
[package]
name = "rustc_log"
version = "0.0.0"
edition = "2021"
[dependencies]
tracing = "0.1.28"
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
tracing-tree = "0.2.0"
tracing-core = "0.1.28"
2022-01-04 08:32:52 +08:00
2022-01-04 14:01:35 +08:00
[dev-dependencies]
rustc_span = { path = "../rustc_span" }
2022-01-04 08:32:52 +08:00
[features]
max_level_info = ['tracing/max_level_info']