Rollup merge of #58220 - taiki-e:libprofiler_builtins-2018, r=Centril

libprofiler_builtins => 2018

Transitions `libprofiler_builtins` to Rust 2018; cc #58099

r? @Centril
This commit is contained in:
kennytm 2019-02-07 13:57:52 +08:00 committed by GitHub
commit 247da16f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
build = "build.rs"
name = "profiler_builtins"
version = "0.0.0"
edition = "2018"
[lib]
name = "profiler_builtins"

View File

@ -2,8 +2,6 @@
//!
//! See the build.rs for libcompiler_builtins crate for details.
extern crate cc;
use std::env;
use std::path::Path;

View File

@ -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)]