rust/src/liballoc/Cargo.toml

31 lines
559 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "alloc"
version = "0.0.0"
2018-05-10 13:02:19 -05:00
autotests = false
autobenches = false
[lib]
name = "alloc"
path = "lib.rs"
[dependencies]
core = { path = "../libcore" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
2017-06-13 17:52:59 -05:00
[dev-dependencies]
2018-08-04 17:24:39 -05:00
rand = "0.5"
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