rust/library/alloc/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
884 B
TOML
Raw Normal View History

[package]
name = "alloc"
version = "0.0.0"
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
edition = "2021"
[dependencies]
2020-06-12 02:31:49 +00:00
core = { path = "../core" }
compiler_builtins = { version = "0.1.40", features = ['rustc-dep-of-std'] }
2017-06-13 22:52:59 +00:00
[dev-dependencies]
2019-04-19 07:37:33 +00:00
rand = "0.7"
rand_xorshift = "0.2"
2017-06-13 22:52:59 +00:00
[[test]]
name = "collectionstests"
2020-06-12 02:31:49 +00:00
path = "tests/lib.rs"
2017-06-13 22:52:59 +00:00
[[bench]]
name = "collectionsbenches"
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
[features]
compiler-builtins-mem = ['compiler_builtins/mem']
compiler-builtins-c = ["compiler_builtins/c"]
2020-12-09 19:48:08 +00:00
compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]