]> git.lizzy.rs Git - rust.git/blob - src/libcore/Cargo.toml
Rollup merge of #58595 - stjepang:make-duration-consts-associated, r=oli-obk
[rust.git] / src / libcore / 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
8 [lib]
9 name = "core"
10 path = "lib.rs"
11 test = false
12 bench = false
13
14 [[test]]
15 name = "coretests"
16 path = "../libcore/tests/lib.rs"
17
18 [[bench]]
19 name = "corebenches"
20 path = "../libcore/benches/lib.rs"
21
22 [dev-dependencies]
23 rand = "0.6"
24
25 [features]
26 # Make panics and failed asserts immediately abort without formatting any message
27 panic_immediate_abort = []