We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9708644 + efa8fb0 commit 5e208f6Copy full SHA for 5e208f6
src/tools/error_index_generator/Cargo.toml
@@ -2,6 +2,7 @@
2
authors = ["The Rust Project Developers"]
3
name = "error_index_generator"
4
version = "0.0.0"
5
+edition = "2018"
6
7
[dependencies]
8
rustdoc = { path = "../../librustdoc" }
src/tools/error_index_generator/main.rs
@@ -1,8 +1,9 @@
1
#![feature(rustc_private)]
+#![deny(rust_2018_idioms)]
+
extern crate env_logger;
extern crate syntax;
-extern crate rustdoc;
extern crate serialize as rustc_serialize;
9
use std::collections::BTreeMap;
0 commit comments