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