Skip to content

Commit 3ad0aab

Browse files
committed
Transition build_helper to 2018 edition
1 parent 8a57831 commit 3ad0aab

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/build_helper/Cargo.toml

+1
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

+2
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)