Skip to content

Commit

Permalink
Disable log support
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Jul 31, 2020
1 parent 720832c commit 358e21e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
26 changes: 1 addition & 25 deletions Cargo.lock
Expand Up @@ -4997,27 +4997,6 @@ dependencies = [
"lazy_static",
]

[[package]]
name = "tracing-log"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]

[[package]]
name = "tracing-serde"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6ccba2f8f16e0ed268fc765d9b7ff22e965e7185d32f8f1ec8294fe17d86e79"
dependencies = [
"serde",
"tracing-core",
]

[[package]]
name = "tracing-subscriber"
version = "0.2.10"
Expand All @@ -5028,14 +5007,11 @@ dependencies = [
"chrono",
"lazy_static",
"matchers",
"parking_lot 0.9.0",
"regex",
"serde",
"serde_json",
"sharded-slab",
"smallvec 1.4.0",
"tracing-core",
"tracing-log",
"tracing-serde",
]

[[package]]
Expand Down
2 changes: 1 addition & 1 deletion src/librustc_driver/Cargo.toml
Expand Up @@ -13,7 +13,7 @@ crate-type = ["dylib"]
lazy_static = "1.0"
libc = "0.2"
log = { package = "tracing", version = "0.1.18", features = ["release_max_level_info"] }
tracing-subscriber = { version = "0.2.10", features = ["fmt", "env-filter"] }
tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi", "chrono"] }
rustc_middle = { path = "../librustc_middle" }
rustc_ast_pretty = { path = "../librustc_ast_pretty" }
rustc_target = { path = "../librustc_target" }
Expand Down

0 comments on commit 358e21e

Please sign in to comment.