We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b139669 commit 20022f8Copy full SHA for 20022f8
src/librustc_tsan/Cargo.toml
@@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
3
build = "build.rs"
4
name = "rustc_tsan"
5
version = "0.0.0"
6
+edition = "2018"
7
8
[lib]
9
src/librustc_tsan/build.rs
@@ -1,6 +1,3 @@
1
-extern crate build_helper;
2
-extern crate cmake;
-
use std::env;
use build_helper::sanitizer_lib_boilerplate;
src/librustc_tsan/lib.rs
@@ -1,8 +1,9 @@
#![sanitizer_runtime]
-#![feature(nll)]
#![feature(sanitizer_runtime)]
#![feature(staged_api)]
#![no_std]
#![unstable(feature = "sanitizer_runtime_lib",
reason = "internal implementation detail of sanitizers",
issue = "0")]
+
+#![deny(rust_2018_idioms)]
0 commit comments