//! **This crate is deprecated.** You can now write:
//!
//! ```rust
//! #[cfg(all(feature = "alloc", not(feature = "std")))]
//! extern crate alloc;
//! #[cfg(feature = "std")]
//! extern crate std as alloc;
//! ```
extern crate alloc as alloc_crate;
pub use *;
pub use ;