]> git.lizzy.rs Git - rust.git/blob - library/alloc/Cargo.toml
Rollup merge of #82367 - matthiaskrgr:wraps, r=petrochenkov
[rust.git] / library / alloc / 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 [dependencies]
10 core = { path = "../core" }
11 compiler_builtins = { version = "0.1.39", features = ['rustc-dep-of-std'] }
12
13 [dev-dependencies]
14 rand = "0.7"
15 rand_xorshift = "0.2"
16
17 [[test]]
18 name = "collectionstests"
19 path = "tests/lib.rs"
20
21 [[bench]]
22 name = "collectionsbenches"
23 path = "benches/lib.rs"
24 test = true
25
26 [[bench]]
27 name = "vec_deque_append_bench"
28 path = "benches/vec_deque_append.rs"
29 harness = false
30
31 [features]
32 compiler-builtins-mem = ['compiler_builtins/mem']
33 compiler-builtins-c = ["compiler_builtins/c"]
34 compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
35 compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]