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?
This commit is contained in:
Matthias Krüger 2023-11-28 09:28:37 +01:00 committed by GitHub
commit 7dbbffdc67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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