]> git.lizzy.rs Git - rust.git/blob - src/liballoc/Cargo.toml
submodule: update rls from c9d25b667a to f331ff7
[rust.git] / src / liballoc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "alloc"
4 version = "0.0.0"
5 autotests = false
6 autobenches = false
7
8 [lib]
9 name = "alloc"
10 path = "lib.rs"
11
12 [dependencies]
13 core = { path = "../libcore" }
14 compiler_builtins = { version = "0.1.0", features = ['rustc-dep-of-std'] }
15
16 [dev-dependencies]
17 rand = "0.6"
18 rand_xorshift = "0.1"
19
20 [[test]]
21 name = "collectionstests"
22 path = "../liballoc/tests/lib.rs"
23
24 [[bench]]
25 name = "collectionsbenches"
26 path = "../liballoc/benches/lib.rs"
27
28 [[bench]]
29 name = "vec_deque_append_bench"
30 path = "../liballoc/benches/vec_deque_append.rs"
31 harness = false
32
33 [features]
34 compiler-builtins-mem = ['compiler_builtins/mem']