diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-11-28 09:28:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-28 09:28:37 +0100 |
| commit | 7dbbffdc6715e411916abc869b99e91b6f859a6e (patch) | |
| tree | 98175101f5ff21201c83f4a30252df53002a5e8d | |
| parent | 787f1a65df3790ec9da5700ae7e16d750eada34d (diff) | |
| parent | 865ab921ab688f4bb55ef6ae630f0c5b67923337 (diff) | |
| download | rust-7dbbffdc6715e411916abc869b99e91b6f859a6e.tar.gz rust-7dbbffdc6715e411916abc869b99e91b6f859a6e.zip | |
Rollup merge of #118314 - WaffleLapkin:rename_collectionstests, r=cuviper
Rename `{collections=>alloc}{tests,benches}`
The crate is named `alloc` so this makes more sense. Ig this is fallout from #42648?
| -rw-r--r-- | library/alloc/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/alloc/Cargo.toml b/library/alloc/Cargo.toml index 63aec14f481..e8afed6b35a 100644 --- a/library/alloc/Cargo.toml +++ b/library/alloc/Cargo.toml @@ -17,11 +17,11 @@ rand = { version = "0.8.5", default-features = false, features = ["alloc"] } rand_xorshift = "0.3.0" [[test]] -name = "collectionstests" +name = "alloctests" path = "tests/lib.rs" [[bench]] -name = "collectionsbenches" +name = "allocbenches" path = "benches/lib.rs" test = true |
