]> git.lizzy.rs Git - rust.git/blob - library/core/Cargo.toml
Rollup merge of #82372 - RalfJung:unsafe-cell, r=KodrAus
[rust.git] / library / core / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "core"
4 version = "0.0.0"
5 autotests = false
6 autobenches = false
7 edition = "2018"
8
9 [lib]
10 test = false
11 bench = false
12
13 [[test]]
14 name = "coretests"
15 path = "tests/lib.rs"
16
17 [[bench]]
18 name = "corebenches"
19 path = "benches/lib.rs"
20 test = true
21
22 [dev-dependencies]
23 rand = "0.7"
24
25 [features]
26 # Make panics and failed asserts immediately abort without formatting any message
27 panic_immediate_abort = []