We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b139669 commit 3893b2fCopy full SHA for 3893b2f
src/libprofiler_builtins/Cargo.toml
@@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
3
build = "build.rs"
4
name = "profiler_builtins"
5
version = "0.0.0"
6
+edition = "2018"
7
8
[lib]
9
src/libprofiler_builtins/build.rs
@@ -2,8 +2,6 @@
2
//!
//! See the build.rs for libcompiler_builtins crate for details.
-extern crate cc;
-
use std::env;
use std::path::Path;
src/libprofiler_builtins/lib.rs
@@ -5,5 +5,5 @@
reason = "internal implementation detail of rustc right now",
issue = "0")]
#![allow(unused_features)]
-#![feature(nll)]
#![feature(staged_api)]
+#![deny(rust_2018_idioms)]
0 commit comments