2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "alloc"
|
|
|
|
version = "0.0.0"
|
2018-05-10 13:02:19 -05:00
|
|
|
autotests = false
|
|
|
|
autobenches = false
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "alloc"
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
core = { path = "../libcore" }
|
2018-03-30 06:06:34 -05:00
|
|
|
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
|
2017-06-13 17:52:59 -05:00
|
|
|
|
2017-11-01 14:32:13 -05:00
|
|
|
[dev-dependencies]
|
2018-08-04 17:24:39 -05:00
|
|
|
rand = "0.5"
|
2017-11-01 14:32:13 -05:00
|
|
|
|
2017-06-13 17:52:59 -05:00
|
|
|
[[test]]
|
|
|
|
name = "collectionstests"
|
|
|
|
path = "../liballoc/tests/lib.rs"
|
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "collectionsbenches"
|
|
|
|
path = "../liballoc/benches/lib.rs"
|
2018-08-10 14:52:00 -05:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "vec_deque_append_bench"
|
|
|
|
path = "../liballoc/benches/vec_deque_append.rs"
|
|
|
|
harness = false
|