Skip to content

Commit 6f5941e

Browse files
authored
Rollup merge of rust-lang#58120 - h-michael:build_helper-theme-2018, r=Centril
Transition build_helper to 2018 edition Transitions build_helper to Rust 2018; cc rust-lang#58099 r? @Centril
2 parents f674779 + 3ad0aab commit 6f5941e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/build_helper/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "build_helper"
33
version = "0.1.0"
44
authors = ["The Rust Project Developers"]
5+
edition = "2018"
56

67
[lib]
78
name = "build_helper"

src/build_helper/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#![deny(rust_2018_idioms)]
2+
13
use std::fs::File;
24
use std::path::{Path, PathBuf};
35
use std::process::{Command, Stdio};

0 commit comments

Comments
 (0)