1[package]
2name = "core"
3version = "0.0.0"
4license = "MIT OR Apache-2.0"
5repository = "https://github.com/rust-lang/rust.git"
6description = "The Rust Core Library"
7autotests = false
8autobenches = false
9# If you update this, be sure to update it in a bunch of other places too!
10# As of 2022, it was the ci/pgo.sh script and the core-no-fp-fmt-parse test.
11edition = "2021"
12
13[lib]
14test = false
15bench = false
16
17[[test]]
18name = "coretests"
19path = "tests/lib.rs"
20
21[[bench]]
22name = "corebenches"
23path = "benches/lib.rs"
24test = true
25
26[dev-dependencies]
27rand = { version = "0.8.5", default-features = false }
28rand_xorshift = { version = "0.3.0", default-features = false }
29
30[features]
31# Make panics and failed asserts immediately abort without formatting any message
32panic_immediate_abort = []
33# Make `RefCell` store additional debugging information, which is printed out when
34# a borrow error occurs
35debug_refcell = []
36