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_codegen_ssa | |
| parent | e18b56345f06c12be4dba9b5d76f306cdf0ab7f9 (diff) | |
| download | rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.tar.gz rust-fdfbd89946ca34d12eec658d111ce9a85cd23df0.zip | |
Incorporate tracing crate
Diffstat (limited to 'src/librustc_codegen_ssa')
| -rw-r--r-- | src/librustc_codegen_ssa/Cargo.toml | 2 | ||||
| -rw-r--r-- | src/librustc_codegen_ssa/lib.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/librustc_codegen_ssa/Cargo.toml b/src/librustc_codegen_ssa/Cargo.toml index 8fa0de37648..3cc1f4c3928 100644 --- a/src/librustc_codegen_ssa/Cargo.toml +++ b/src/librustc_codegen_ssa/Cargo.toml @@ -14,7 +14,7 @@ bitflags = "1.2.1" cc = "1.0.1" num_cpus = "1.0" memmap = "0.7" -log = { package = "tracing", version = "0.1" } +tracing = "0.1" libc = "0.2.50" jobserver = "0.1.11" tempfile = "3.1" diff --git a/src/librustc_codegen_ssa/lib.rs b/src/librustc_codegen_ssa/lib.rs index 85260d30a3d..1e06de06108 100644 --- a/src/librustc_codegen_ssa/lib.rs +++ b/src/librustc_codegen_ssa/lib.rs @@ -17,7 +17,7 @@ //! have to be implemented by each backends. #[macro_use] -extern crate log; +extern crate tracing; #[macro_use] extern crate rustc_middle; |
