2016-01-21 17:19:23 -06:00
|
|
|
[package]
|
|
|
|
name = "alloc"
|
|
|
|
version = "0.0.0"
|
2021-02-20 12:18:01 -06: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 13:02:19 -05:00
|
|
|
autotests = false
|
|
|
|
autobenches = false
|
2021-12-17 07:53:28 -06:00
|
|
|
edition = "2021"
|
2016-01-21 17:19:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2020-06-11 21:31:49 -05:00
|
|
|
core = { path = "../core" }
|
2021-04-11 14:51:28 -05:00
|
|
|
compiler_builtins = { version = "0.1.40", features = ['rustc-dep-of-std'] }
|
2017-06-13 17:52:59 -05:00
|
|
|
|
2017-11-01 14:32:13 -05:00
|
|
|
[dev-dependencies]
|
2022-11-20 18:55:41 -06:00
|
|
|
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
|
|
|
|
rand_xorshift = "0.3.0"
|
2017-11-01 14:32:13 -05:00
|
|
|
|
2017-06-13 17:52:59 -05:00
|
|
|
[[test]]
|
|
|
|
name = "collectionstests"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "tests/lib.rs"
|
2017-06-13 17:52:59 -05:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "collectionsbenches"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "benches/lib.rs"
|
2020-06-08 11:09:21 -05:00
|
|
|
test = true
|
2018-08-10 14:52:00 -05:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "vec_deque_append_bench"
|
2020-06-11 21:31:49 -05:00
|
|
|
path = "benches/vec_deque_append.rs"
|
2018-08-10 14:52:00 -05:00
|
|
|
harness = false
|
2018-12-14 11:05:31 -06:00
|
|
|
|
|
|
|
[features]
|
|
|
|
compiler-builtins-mem = ['compiler_builtins/mem']
|
2019-05-14 16:43:43 -05:00
|
|
|
compiler-builtins-c = ["compiler_builtins/c"]
|
2020-12-09 13:48:08 -06:00
|
|
|
compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
|
2020-10-28 01:54:30 -05:00
|
|
|
compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]
|
2023-06-23 05:15:34 -05:00
|
|
|
compiler-builtins-weak-intrinsics = ["compiler_builtins/weak-intrinsics"]
|