]> git.lizzy.rs Git - rust.git/blob - src/liballoc/Cargo.toml
compiletest: Do not run debuginfo tests with gdb on msvc targets
[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 edition = "2018"
8
9 [lib]
10 name = "alloc"
11 path = "lib.rs"
12
13 [dependencies]
14 core = { path = "../libcore" }
15 compiler_builtins = { version = "0.1.10", features = ['rustc-dep-of-std'] }
16
17 [dev-dependencies]
18 rand = "0.7"
19 rand_xorshift = "0.2"
20
21 [[test]]
22 name = "collectionstests"
23 path = "../liballoc/tests/lib.rs"
24
25 [[bench]]
26 name = "collectionsbenches"
27 path = "../liballoc/benches/lib.rs"
28
29 [[bench]]
30 name = "vec_deque_append_bench"
31 path = "../liballoc/benches/vec_deque_append.rs"
32 harness = false
33
34 [features]
35 compiler-builtins-mem = ['compiler_builtins/mem']
36 compiler-builtins-c = ["compiler_builtins/c"]