Skip to content

Commit

Permalink
Rollup merge of rust-lang#58120 - h-michael:build_helper-theme-2018, …
Browse files Browse the repository at this point in the history
…r=Centril

Transition build_helper to 2018 edition

Transitions build_helper to Rust 2018; cc rust-lang#58099
r? @Centril
  • Loading branch information
kennytm authored Feb 8, 2019
2 parents 595abfd + 3ad0aab commit a89b77d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/build_helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "build_helper"
version = "0.1.0"
authors = ["The Rust Project Developers"]
edition = "2018"

[lib]
name = "build_helper"
Expand Down
2 changes: 2 additions & 0 deletions src/build_helper/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![deny(rust_2018_idioms)]

use std::fs::File;
use std::path::{Path, PathBuf};
use std::process::{Command, Stdio};
Expand Down

0 comments on commit a89b77d

Please sign in to comment.