]> git.lizzy.rs Git - rust.git/blob - src/liballoc/Cargo.toml
Separate codepaths for fat and thin LTO in write.rs
[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 = { path = "../rustc/compiler_builtins_shim" }
15
16 [dev-dependencies]
17 rand = "0.5"
18
19 [[test]]
20 name = "collectionstests"
21 path = "../liballoc/tests/lib.rs"
22
23 [[bench]]
24 name = "collectionsbenches"
25 path = "../liballoc/benches/lib.rs"
26
27 [[bench]]
28 name = "vec_deque_append_bench"
29 path = "../liballoc/benches/vec_deque_append.rs"
30 harness = false