diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-03-01 22:00:18 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-03-07 13:05:12 -0800 |
| commit | 0d5cfd9117eabab7d3179277ee6b18bb6efb4f11 (patch) | |
| tree | ad5b2780f0a8ffd52d7e1cfe48a7d2f22b30f6c6 /src/libstd/lib.rs | |
| parent | 2f34986eb0f14b3ce5e17db577abc632a9176380 (diff) | |
| download | rust-0d5cfd9117eabab7d3179277ee6b18bb6efb4f11.tar.gz rust-0d5cfd9117eabab7d3179277ee6b18bb6efb4f11.zip | |
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/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index fa07b0f761b..d3a0295c835 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -281,7 +281,6 @@ #![cfg_attr(not(stage0), deny(warnings))] #[cfg(test)] extern crate test; -#[cfg(test)] #[macro_use] extern crate log; // We want to reexport a few macros from core but libcore has already been // imported by the compiler (via our #[no_std] attribute) In this case we just |
