Skip to content

Commit

Permalink
Rollup merge of rust-lang#58285 - taiki-e:error_index_generator-2018,…
Browse files Browse the repository at this point in the history
… r=Centril

error_index_generator => 2018

Transitions `error_index_generator` to Rust 2018; cc rust-lang#58099

r? @Centril
  • Loading branch information
Centril authored Feb 8, 2019
2 parents 9708644 + efa8fb0 commit 5e208f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/tools/error_index_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
authors = ["The Rust Project Developers"]
name = "error_index_generator"
version = "0.0.0"
edition = "2018"

[dependencies]
rustdoc = { path = "../../librustdoc" }
Expand Down
3 changes: 2 additions & 1 deletion src/tools/error_index_generator/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#![feature(rustc_private)]

#![deny(rust_2018_idioms)]

extern crate env_logger;
extern crate syntax;
extern crate rustdoc;
extern crate serialize as rustc_serialize;

use std::collections::BTreeMap;
Expand Down

0 comments on commit 5e208f6

Please sign in to comment.