1
Fork 0

Rollup merge of #58120 - h-michael:build_helper-theme-2018, r=Centril

Transition build_helper to 2018 edition

Transitions build_helper to Rust 2018; cc #58099
r? @Centril
This commit is contained in:
Mazdak Farrokhzad 2019-02-09 00:15:48 +01:00 committed by GitHub
commit 6f5941e113
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -2,6 +2,7 @@
name = "build_helper" name = "build_helper"
version = "0.1.0" version = "0.1.0"
authors = ["The Rust Project Developers"] authors = ["The Rust Project Developers"]
edition = "2018"
[lib] [lib]
name = "build_helper" name = "build_helper"

View file

@ -1,3 +1,5 @@
#![deny(rust_2018_idioms)]
use std::fs::File; use std::fs::File;
use std::path::{Path, PathBuf}; use std::path::{Path, PathBuf};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};