Skip to content

Commit 5d9eed4

Browse files
committed
Transition build-manifest to 2018 edition
1 parent 8ae730a commit 5d9eed4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/tools/build-manifest/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "build-manifest"
33
version = "0.1.0"
44
authors = ["Alex Crichton <[email protected]>"]
5+
edition = "2018"
56

67
[dependencies]
78
toml = "0.4"

src/tools/build-manifest/src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
extern crate toml;
1+
#![deny(rust_2018_idioms)]
2+
3+
use toml;
24
#[macro_use]
35
extern crate serde_derive;
46

0 commit comments

Comments
 (0)