diff options
| author | bishtpawan <pawan.bisht@knoldus.com> | 2020-08-05 17:05:53 +0530 |
|---|---|---|
| committer | bishtpawan <pawan.bisht@knoldus.com> | 2020-08-06 16:56:56 +0530 |
| commit | fdfbd89946ca34d12eec658d111ce9a85cd23df0 (patch) | |
| tree | 0b70679788c0ecc7f0b01aba15a0ebfc76057392 /src/librustc_data_structures | |
| parent | e18b56345f06c12be4dba9b5d76f306cdf0ab7f9 (diff) | |
| download | rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.tar.gz rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.zip | |
Incorporate tracing crate
Diffstat (limited to 'src/librustc_data_structures')
| -rw-r--r-- | src/librustc_data_structures/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustc_data_structures/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml index 811d1e49626..386096b416f 100644 --- a/src/librustc_data_structures/Cargo.toml +++ b/src/librustc_data_structures/Cargo.toml @@ -12,7 +12,7 @@ doctest = false [dependencies] ena = "0.14" indexmap = "1" -log = { package = "tracing", version = "0.1" } +tracing = "0.1" jobserver_crate = { version = "0.1.13", package = "jobserver" } lazy_static = "1" once_cell = { version = "1", features = ["parking_lot"] } diff --git a/src/librustc_data_structures/lib.rs b/src/librustc_data_structures/lib.rs index 0b2e7cda1b4..242390fbde8 100644 --- a/src/librustc_data_structures/lib.rs +++ b/src/librustc_data_structures/lib.rs @@ -26,7 +26,7 @@ #![allow(rustc::default_hash_types)] #[macro_use] -extern crate log; +extern crate tracing; #[macro_use] extern crate cfg_if; |
