drop the maybe_uninit feature gate

This commit is contained in:
Jorge Aparicio 2019-05-21 12:43:19 +02:00
parent 8510b0171c
commit fd1f701120
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;