1
Fork 0

std: Delete the alloc_system crate

This commit deletes the `alloc_system` crate from the standard
distribution. This unstable crate is no longer needed in the modern
stable global allocator world, but rather its functionality is folded
directly into the standard library. The standard library was already the
only stable location to access this crate, and as a result this should
not affect any stable code.
This commit is contained in:
Alex Crichton 2018-11-03 11:15:48 -07:00
parent d3939322e3
commit cc7590341a
31 changed files with 450 additions and 508 deletions

View file

@ -38,6 +38,7 @@ macro_rules! rtassert {
})
}
pub mod alloc;
pub mod at_exit_imp;
#[cfg(feature = "backtrace")]
pub mod backtrace;