Remove unneeded core import

This was previously used by the unstable nonzero impls.

    #[cfg(feature = "unstable")]
    use core::num::{NonZeroU16, NonZeroU32, NonZeroU64, NonZeroU8, NonZeroUsize};
This commit is contained in:
David Tolnay 2018-05-26 10:16:53 -07:00
parent 99091d5925
commit 5310bd87ae
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -130,9 +130,6 @@
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(all(feature = "unstable", feature = "std"))]
extern crate core;
/// A facade around all the types we need from the `std`, `core`, and `alloc`
/// crates. This avoids elaborate import wrangling having to happen in every
/// module.