]> git.lizzy.rs Git - rust.git/blob - library/alloc/Cargo.toml
Use `try_into` instead of asserting manually
[rust.git] / library / alloc / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "alloc"
4 version = "0.0.0"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-lang/rust.git"
7 description = "The Rust core allocation and collections library"
8 autotests = false
9 autobenches = false
10 edition = "2018"
11
12 [dependencies]
13 core = { path = "../core" }
14 compiler_builtins = { version = "0.1.40", features = ['rustc-dep-of-std'] }
15
16 [dev-dependencies]
17 rand = "0.7"
18 rand_xorshift = "0.2"
19
20 [[test]]
21 name = "collectionstests"
22 path = "tests/lib.rs"
23
24 [[bench]]
25 name = "collectionsbenches"
26 path = "benches/lib.rs"
27 test = true
28
29 [[bench]]
30 name = "vec_deque_append_bench"
31 path = "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"]
37 compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
38 compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]