summary refs log tree commit diff
path: root/src/libcollections/Cargo.toml
blob: 7e92404bc0d6f3dce905231c980c41af9d7ec228 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
authors = ["The Rust Project Developers"]
name = "collections"
version = "0.0.0"

[lib]
name = "collections"
path = "lib.rs"

[dependencies]
alloc = { path = "../liballoc" }
core = { path = "../libcore" }
std_unicode = { path = "../libstd_unicode" }

[[test]]
name = "collectionstests"
path = "../libcollections/tests/lib.rs"

[[bench]]
name = "collectionsbenches"
path = "../libcollections/benches/lib.rs"