about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOliver Scherer <github35764891676564198441@oli-obk.de>2020-08-01 16:24:52 +0200
committerOliver Scherer <github35764891676564198441@oli-obk.de>2020-08-01 16:24:52 +0200
commitc7290379be40f930802f0deea87cdb313332e5cc (patch)
treee6f8ba0a376327172d5328acc362df0a0d624948
parent401033c68486bc7672cc87e0f4c5b4862e96c778 (diff)
downloadrust-c7290379be40f930802f0deea87cdb313332e5cc.tar.gz
rust-c7290379be40f930802f0deea87cdb313332e5cc.zip
Remove chrono feature from tracing
-rw-r--r--Cargo.lock1
-rw-r--r--src/librustc_driver/Cargo.toml2
2 files changed, 1 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 46b13db0102..7e90b7e6fba 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5004,7 +5004,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "f7b33f8b2ef2ab0c3778c12646d9c42a24f7772bee4cdafc72199644a9f58fdc"
 dependencies = [
  "ansi_term 0.12.1",
- "chrono",
  "lazy_static",
  "matchers",
  "parking_lot 0.9.0",
diff --git a/src/librustc_driver/Cargo.toml b/src/librustc_driver/Cargo.toml
index 2f6c2c6c22c..6474a69b216 100644
--- a/src/librustc_driver/Cargo.toml
+++ b/src/librustc_driver/Cargo.toml
@@ -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", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi", "chrono"] }
+tracing-subscriber = { version = "0.2.10", default-features = false, features = ["fmt", "env-filter", "smallvec", "parking_lot", "ansi"] }
 rustc_middle = { path = "../librustc_middle" }
 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
 rustc_target = { path = "../librustc_target" }