diff options
| author | bors <bors@rust-lang.org> | 2016-03-08 07:34:28 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-03-08 07:34:28 -0800 |
| commit | eabfc160f87ccc0b296f49af7fe688506580c473 (patch) | |
| tree | 3ed43a5ee293a1f947caf5ca8b01d8f648652692 /src/liballoc | |
| parent | 8f0479b2a5fc16814b68efe9e87dddf231b8941d (diff) | |
| parent | 0d5cfd9117eabab7d3179277ee6b18bb6efb4f11 (diff) | |
| download | rust-eabfc160f87ccc0b296f49af7fe688506580c473.tar.gz rust-eabfc160f87ccc0b296f49af7fe688506580c473.zip | |
Auto merge of #32009 - alexcrichton:trim-fulldeps, r=brson
mk: Distribute fewer TARGET_CRATES Right now everything in TARGET_CRATES is built by default for all non-fulldeps tests and is distributed by default for all target standard library packages. Currenly this includes a number of unstable crates which are rarely used such as `graphviz` and `rbml`> This commit trims down the set of `TARGET_CRATES`, moves a number of tests to `*-fulldeps` as a result, and trims down the dependencies of libtest so we can distribute fewer crates in the `rust-std` packages.
Diffstat (limited to 'src/liballoc')
| -rw-r--r-- | src/liballoc/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index 300142d5ec1..0293d5402c4 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -92,16 +92,13 @@ #![feature(unsize)] #![cfg_attr(not(test), feature(raw, fn_traits, placement_new_protocol))] -#![cfg_attr(test, feature(test, rustc_private, box_heap))] +#![cfg_attr(test, feature(test, box_heap))] // Allow testing this library #[cfg(test)] #[macro_use] extern crate std; -#[cfg(test)] -#[macro_use] -extern crate log; // Heaps provided for low-level allocation strategies |
