Transition build_helper to 2018 edition

This commit is contained in:
Hirokazu Hata 2019-02-04 01:05:45 +09:00
parent 8a57831a4b
commit 3ad0aabdda
2 changed files with 3 additions and 0 deletions

View File

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

View File

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