std-shims 0.2.0

A series of std shims to make alloc more feasible
Documentation
1
2
3
4
5
6
7
#[cfg(all(feature = "alloc", not(feature = "std")))]
pub use extern_alloc::collections::*;
#[cfg(all(feature = "alloc", not(feature = "std")))]
pub use hashbrown::{HashSet, HashMap};

#[cfg(feature = "std")]
pub use std::collections::*;