diff options
| author | Lily Mara <lilymara@onesignal.com> | 2022-04-15 14:45:58 -0700 |
|---|---|---|
| committer | Lily Mara <lilymara@onesignal.com> | 2022-04-15 14:45:58 -0700 |
| commit | 3cd8b5a5ef81b43434f1fd0e3574263a286d152a (patch) | |
| tree | 401e4e10ef387e333aabf7ee0c31452fd1eab5e7 | |
| parent | 4844325faf392beb47c6e6d3231dfbba55f926c2 (diff) | |
| download | rust-3cd8b5a5ef81b43434f1fd0e3574263a286d152a.tar.gz rust-3cd8b5a5ef81b43434f1fd0e3574263a286d152a.zip | |
fixup! Add `await_holding_invalid_type` lint
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | tests/compile-test.rs | 4 |
2 files changed, 0 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml index 1fb532deb9b..dd6518d5241 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,6 @@ futures = "0.3" parking_lot = "0.11.2" tokio = { version = "1", features = ["io-util"] } rustc-semver = "1.1" -tracing = "0.1" [build-dependencies] rustc_tools_util = { version = "0.2", path = "rustc_tools_util" } diff --git a/tests/compile-test.rs b/tests/compile-test.rs index f437553bca1..c9710e3db8e 100644 --- a/tests/compile-test.rs +++ b/tests/compile-test.rs @@ -35,7 +35,6 @@ static TEST_DEPENDENCIES: &[&str] = &[ "tokio", "parking_lot", "rustc_semver", - "tracing", ]; // Test dependencies may need an `extern crate` here to ensure that they show up @@ -60,9 +59,6 @@ extern crate rustc_semver; extern crate syn; #[allow(unused_extern_crates)] extern crate tokio; -#[allow(unused_extern_crates, unused_imports)] -#[macro_use] -extern crate tracing; /// Produces a string with an `--extern` flag for all UI test crate /// dependencies. |
