rust/src/libprofiler_builtins/lib.rs
Vadim Petrochenkov 434152157f Remove lint annotations in specific crates that are already enforced by rustbuild
Remove some random unnecessary lint `allow`s
2019-07-28 18:46:24 +03:00

9 lines
276 B
Rust

#![no_std]
#![feature(profiler_runtime)]
#![profiler_runtime]
#![unstable(feature = "profiler_runtime_lib",
reason = "internal implementation detail of rustc right now",
issue = "0")]
#![allow(unused_features)]
#![feature(nll)]
#![feature(staged_api)]