library/alloctests/Cargo.toml TOML 47 lines View on github.com → Search inside
1[package]2name = "alloctests"3version = "0.0.0"4license = "MIT OR Apache-2.0"5repository = "https://github.com/rust-lang/rust.git"6description = "Tests for the Rust Allocation Library"7autotests = false8autobenches = false9edition = "2024"1011[lib]12path = "lib.rs"13test = true14bench = true15doc = false1617[dev-dependencies]18rand = { version = "0.9.0", default-features = false, features = ["alloc"] }19rand_xorshift = "0.4.0"2021[[test]]22name = "alloctests"23path = "tests/lib.rs"2425[[test]]26name = "vec_deque_alloc_error"27path = "tests/vec_deque_alloc_error.rs"2829[[bench]]30name = "allocbenches"31path = "benches/lib.rs"32test = true3334[[bench]]35name = "vec_deque_append_bench"36path = "benches/vec_deque_append.rs"37harness = false3839[lints.rust.unexpected_cfgs]40level = "warn"41check-cfg = [42    'cfg(no_global_oom_handling)',43    'cfg(no_rc)',44    'cfg(no_sync)',45    'cfg(randomized_layouts)',46]

Findings

✓ No findings reported for this file.

Get this view in your editor

Same data, no extra tab — call code_get_file + code_get_findings over MCP from Claude/Cursor/Copilot.