]> git.lizzy.rs Git - rust.git/blob - src/libcore/Cargo.toml
Add some type-alias-impl-trait regression tests
[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 edition = "2018"
8
9 [lib]
10 name = "core"
11 path = "lib.rs"
12 test = false
13 bench = false
14
15 [[test]]
16 name = "coretests"
17 path = "../libcore/tests/lib.rs"
18
19 [[bench]]
20 name = "corebenches"
21 path = "../libcore/benches/lib.rs"
22
23 [dev-dependencies]
24 rand = "0.7"
25
26 [features]
27 # Make panics and failed asserts immediately abort without formatting any message
28 panic_immediate_abort = []