about summary refs log tree commit diff
path: root/src/libcollections/Cargo.toml
AgeCommit message (Collapse)AuthorLines
2017-10-22Remove deprecated `collections` crate.leonardo.yvens-12/+0
This reverts commit 6484258f1749499d3e51685df867b3d460a7f0be.
2017-06-17Reintroduce deprecated `collections` crateMurarth-0/+12
2017-06-13Merge crate `collections` into `alloc`Murarth-21/+0
2017-04-03Move libXtest into libX/testsStjepan Glavina-2/+2
This change moves: 1. `libcoretest` into `libcore/tests` 2. `libcollectionstest` into `libcollections/tests` This is a follow-up to #39561.
2017-02-06Extract collections benchmarks to libcollections/benchesSon-4/+3
And libcore/benches
2016-12-29Fallout from updating bootstrap CargoAlex Crichton-3/+4
2016-11-30Rename 'librustc_unicode' crate to 'libstd_unicode'.Corey Farwell-1/+1
Fixes #26554.
2016-11-25rustbuild: Point to core and collections's external benchmarks.Ulrik Sverdrup-0/+4
2016-05-12rustbuild: Add support for crate tests + doctestsAlex Crichton-1/+4
This commit adds support to rustbuild to run crate unit tests (those defined by `#[test]`) as well as documentation tests. All tests are powered by `cargo test` under the hood. Each step requires the `libtest` library is built for that corresponding stage. Ideally the `test` crate would be a dev-dependency, but for now it's just easier to ensure that we sequence everything in the right order. Currently no filtering is implemented, so there's not actually a method of testing *only* libstd or *only* libcore, but rather entire swaths of crates are tested all at once. A few points of note here are: * The `coretest` and `collectionstest` crates are just listed as `[[test]]` entires for `cargo test` to naturally pick up. This mean that `cargo test -p core` actually runs all the tests for libcore. * Libraries that aren't tested all mention `test = false` in their `Cargo.toml` * Crates aren't currently allowed to have dev-dependencies due to rust-lang/cargo#860, but we can likely alleviate this restriction once workspaces are implemented. cc #31590
2016-02-11bootstrap: Add a bunch of Cargo.toml filesAlex Crichton-0/+14
These describe the structure of all our crate dependencies.