mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 06:44:35 +00:00
95ecf0c262
This updates to a new version of builtins that includes [1], which was the last blocker to us enabling `f128` tests on all platforms 🎉. With this update, also change to pinning the version with `=` rather than using the default carat versioning. This is meant to ensure that `compiler-builtins` does not get updated as part of the weekly `Cargo.lock` update, since updates to this crate need to be intentional: changes to rust-lang/rust and rust-lang/compiler-builtins sometimes need to be kept in lockstep, unlike most dependencies, and sometimes these updates can be problematic. [1]: https://github.com/rust-lang/compiler-builtins/pull/624
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[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"
|
|
autotests = false
|
|
autobenches = false
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
core = { path = "../core" }
|
|
compiler_builtins = { version = "=0.1.138", features = ['rustc-dep-of-std'] }
|
|
|
|
[dev-dependencies]
|
|
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }
|
|
rand_xorshift = "0.3.0"
|
|
|
|
[[test]]
|
|
name = "alloctests"
|
|
path = "tests/lib.rs"
|
|
|
|
[[test]]
|
|
name = "vec_deque_alloc_error"
|
|
path = "tests/vec_deque_alloc_error.rs"
|
|
|
|
[[bench]]
|
|
name = "allocbenches"
|
|
path = "benches/lib.rs"
|
|
test = true
|
|
|
|
[[bench]]
|
|
name = "vec_deque_append_bench"
|
|
path = "benches/vec_deque_append.rs"
|
|
harness = false
|
|
|
|
[features]
|
|
compiler-builtins-mem = ['compiler_builtins/mem']
|
|
compiler-builtins-c = ["compiler_builtins/c"]
|
|
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
|
|
panic_immediate_abort = ["core/panic_immediate_abort"]
|
|
# Choose algorithms that are optimized for binary size instead of runtime performance
|
|
optimize_for_size = ["core/optimize_for_size"]
|
|
|
|
[lints.rust.unexpected_cfgs]
|
|
level = "warn"
|
|
check-cfg = [
|
|
'cfg(bootstrap)',
|
|
'cfg(no_global_oom_handling)',
|
|
'cfg(no_rc)',
|
|
'cfg(no_sync)',
|
|
'cfg(randomized_layouts)',
|
|
]
|