We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae730a commit 5d9eed4Copy full SHA for 5d9eed4
src/tools/build-manifest/Cargo.toml
@@ -2,6 +2,7 @@
2
name = "build-manifest"
3
version = "0.1.0"
4
authors = ["Alex Crichton <[email protected]>"]
5
+edition = "2018"
6
7
[dependencies]
8
toml = "0.4"
src/tools/build-manifest/src/main.rs
@@ -1,4 +1,6 @@
1
-extern crate toml;
+#![deny(rust_2018_idioms)]
+
+use toml;
#[macro_use]
extern crate serde_derive;
0 commit comments