2016-01-21 15:19:23 -08:00
|
|
|
[package]
|
|
|
|
name = "alloc"
|
|
|
|
version = "0.0.0"
|
2021-02-20 13:18:01 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/rust-lang/rust.git"
|
|
|
|
description = "The Rust core allocation and collections library"
|
2018-05-10 12:02:19 -06:00
|
|
|
autotests = false
|
|
|
|
autobenches = false
|
2021-12-17 21:53:28 +08:00
|
|
|
edition = "2021"
|
2016-01-21 15:19:23 -08:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-11 21:31:49 -05:00
|
|
|
core = { path = "../core" }
|
2021-04-11 20:51:28 +01:00
|
|
|
compiler_builtins = { version = "0.1.40", features = ['rustc-dep-of-std'] }
|
2017-06-13 15:52:59 -07:00
|
|
|
|
2017-11-01 12:32:13 -07:00
|
|
|
[dev-dependencies]
|
2022-11-20 16:55:41 -08:00
|
|
|
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
|
|
|
|
rand_xorshift = "0.3.0"
|
2017-11-01 12:32:13 -07:00
|
|
|
|
2017-06-13 15:52:59 -07:00
|
|
|
[[test]]
|
|
|
|
name = "collectionstests"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "tests/lib.rs"
|
2017-06-13 15:52:59 -07:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "collectionsbenches"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "benches/lib.rs"
|
2020-06-08 09:09:21 -07:00
|
|
|
test = true
|
2018-08-10 21:52:00 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "vec_deque_append_bench"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "benches/vec_deque_append.rs"
|
2018-08-10 21:52:00 +02:00
|
|
|
harness = false
|
2018-12-14 09:05:31 -08:00
|
|
|
|
|
|
|
[features]
|
|
|
|
compiler-builtins-mem = ['compiler_builtins/mem']
|
2019-05-14 14:43:43 -07:00
|
|
|
compiler-builtins-c = ["compiler_builtins/c"]
|
2020-12-10 04:48:08 +09:00
|
|
|
compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
|
2020-10-28 07:54:30 +01:00
|
|
|
compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]
|