Skip to content

Commit 5489d0d

Browse files
authored
Rollup merge of rust-lang#58241 - taiki-e:librustc_llvm-2018, r=Centril
librustc_llvm => 2018 Transitions `librustc_llvm` to Rust 2018; cc rust-lang#58099 r? @Centril
2 parents 207290d + a07dc4e commit 5489d0d

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

src/librustc_llvm/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ authors = ["The Rust Project Developers"]
33
name = "rustc_llvm"
44
version = "0.0.0"
55
build = "build.rs"
6+
edition = "2018"
67

78
[lib]
89
name = "rustc_llvm"

src/librustc_llvm/build.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
extern crate cc;
2-
extern crate build_helper;
3-
41
use std::process::Command;
52
use std::env;
63
use std::path::{PathBuf, Path};

src/librustc_llvm/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![feature(nll)]
1+
#![deny(rust_2018_idioms)]
22
#![feature(static_nobundle)]
33

44
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",

0 commit comments

Comments
 (0)