]> git.lizzy.rs Git - rust.git/commit
std: Delete the `alloc_system` crate
authorAlex Crichton <alex@alexcrichton.com>
Sat, 3 Nov 2018 18:15:48 +0000 (11:15 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Sun, 11 Nov 2018 17:22:28 +0000 (09:22 -0800)
commitcc7590341a6ac213909d0ef56a7ebc2834274c8b
tree12aef157ad50b7c1161027a33f4a028e1628fabd
parentd3939322e3273059bdfedec52cb8d6f78476af7c
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.
31 files changed:
src/Cargo.lock
src/bootstrap/dist.rs
src/ci/docker/wasm32-unknown/Dockerfile
src/liballoc/tests/heap.rs
src/liballoc/tests/lib.rs
src/liballoc_system/Cargo.toml [deleted file]
src/liballoc_system/lib.rs [deleted file]
src/librustc_asan/Cargo.toml
src/librustc_asan/lib.rs
src/librustc_lsan/Cargo.toml
src/librustc_lsan/lib.rs
src/librustc_metadata/creader.rs
src/librustc_msan/Cargo.toml
src/librustc_msan/lib.rs
src/librustc_tsan/Cargo.toml
src/librustc_tsan/lib.rs
src/libstd/Cargo.toml
src/libstd/alloc.rs
src/libstd/lib.rs
src/libstd/sys/cloudabi/mod.rs
src/libstd/sys/redox/mod.rs
src/libstd/sys/unix/alloc.rs [new file with mode: 0644]
src/libstd/sys/unix/mod.rs
src/libstd/sys/wasm/alloc.rs [new file with mode: 0644]
src/libstd/sys/wasm/mod.rs
src/libstd/sys/windows/alloc.rs [new file with mode: 0644]
src/libstd/sys/windows/c.rs
src/libstd/sys/windows/mod.rs
src/libstd/sys_common/alloc.rs [new file with mode: 0644]
src/libstd/sys_common/mod.rs
src/tools/tidy/src/pal.rs