Deny internal lints on two more crates

- libfmt_macros
- librustdoc
This commit is contained in:
flip1995 2019-04-03 15:53:36 +02:00
parent 51a792d01b
commit 076abfa0f3
No known key found for this signature in database
GPG key ID: 693086869D506637
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@
test(attr(deny(warnings))))]
#![deny(rust_2018_idioms)]
#![cfg_attr(not(stage0), deny(internal))]
#![feature(nll)]
#![feature(rustc_private)]

View file

@ -1,4 +1,5 @@
#![deny(rust_2018_idioms)]
#![cfg_attr(not(stage0), deny(internal))]
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
html_playground_url = "https://play.rust-lang.org/")]