We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 207290d + a07dc4e commit 5489d0dCopy full SHA for 5489d0d
src/librustc_llvm/Cargo.toml
@@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
3
name = "rustc_llvm"
4
version = "0.0.0"
5
build = "build.rs"
6
+edition = "2018"
7
8
[lib]
9
src/librustc_llvm/build.rs
@@ -1,6 +1,3 @@
1
-extern crate cc;
2
-extern crate build_helper;
-
use std::process::Command;
use std::env;
use std::path::{PathBuf, Path};
src/librustc_llvm/lib.rs
@@ -1,4 +1,4 @@
-#![feature(nll)]
+#![deny(rust_2018_idioms)]
#![feature(static_nobundle)]
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
0 commit comments