Files
rust/library/alloc/Cargo.toml

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

40 lines
1.2 KiB
TOML
Raw Normal View History

cargo-features = ["public-dependency"]
[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 12:02:19 -06:00
autotests = false
autobenches = false
2025-02-11 15:20:06 -08:00
edition = "2024"
[lib]
test = false
bench = false
[dependencies]
core = { path = "../core", public = true }
compiler_builtins = { version = "=0.1.152", features = ['rustc-dep-of-std'] }
2017-06-13 15:52:59 -07:00
[features]
compiler-builtins-mem = ['compiler_builtins/mem']
compiler-builtins-c = ["compiler_builtins/c"]
2020-12-10 04:48:08 +09:00
compiler-builtins-no-asm = ["compiler_builtins/no-asm"]
compiler-builtins-no-f16-f128 = ["compiler_builtins/no-f16-f128"]
compiler-builtins-mangled-names = ["compiler_builtins/mangled-names"]
# Make panics and failed asserts immediately abort without formatting any message
2024-05-13 22:20:32 +02:00
panic_immediate_abort = ["core/panic_immediate_abort"]
2024-05-11 14:20:03 +02:00
# Choose algorithms that are optimized for binary size instead of runtime performance
2024-05-13 22:20:32 +02:00
optimize_for_size = ["core/optimize_for_size"]
2024-05-19 23:14:48 +00:00
[lints.rust.unexpected_cfgs]
level = "warn"
check-cfg = [
'cfg(bootstrap)',
2024-05-20 15:06:14 +00:00
'cfg(no_global_oom_handling)',
2024-05-19 23:14:48 +00:00
'cfg(no_rc)',
'cfg(no_sync)',
]