blob: 686e5681d12b4c68625467efb04c3f3a0c424045 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[package]
authors = ["The Rust Project Developers"]
name = "alloc"
version = "0.0.0"
[lib]
name = "alloc"
path = "lib.rs"
[dependencies]
core = { path = "../libcore" }
std_unicode = { path = "../libstd_unicode" }
[[test]]
name = "collectionstests"
path = "../liballoc/tests/lib.rs"
[[bench]]
name = "collectionsbenches"
path = "../liballoc/benches/lib.rs"
|