98: drop the maybe_uninit feature gate r=japaric a=japaric



Co-authored-by: Jorge Aparicio <jorge@japaric.io>
This commit is contained in:
bors[bot] 2019-05-21 10:44:30 +00:00
commit 9426f8d847
3 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@ main() {
if [ $TRAVIS_RUST_VERSION = nightly ]; then
export RUSTFLAGS="-Z sanitizer=thread"
export RUST_TEST_THREADS=1
export TSAN_OPTIONS="suppressions=$(pwd)/blacklist.txt"
export TSAN_OPTIONS="suppressions=$(pwd)/suppressions.txt"
cargo test --test tsan --target $TARGET
cargo test --test tsan --target $TARGET --release

View File

@ -64,7 +64,6 @@
#![deny(rust_2018_compatibility)]
#![deny(rust_2018_idioms)]
#![deny(warnings)]
#![feature(maybe_uninit)]
pub use binary_heap::BinaryHeap;
pub use generic_array::typenum::consts;