rust/src/liballoc/Cargo.toml

24 lines
413 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "alloc"
version = "0.0.0"
[lib]
name = "alloc"
path = "lib.rs"
[dependencies]
core = { path = "../libcore" }
compiler_builtins = { path = "../rustc/compiler_builtins_shim" }
2017-06-13 22:52:59 +00:00
[dev-dependencies]
rand = "0.4"
2017-06-13 22:52:59 +00:00
[[test]]
name = "collectionstests"
path = "../liballoc/tests/lib.rs"
[[bench]]
name = "collectionsbenches"
path = "../liballoc/benches/lib.rs"