rust/src/libcore/Cargo.toml

30 lines
498 B
TOML
Raw Normal View History

[package]
authors = ["The Rust Project Developers"]
name = "core"
version = "0.0.0"
2018-05-10 13:02:19 -05:00
autotests = false
autobenches = false
2019-04-14 21:23:21 -05:00
edition = "2018"
[lib]
name = "core"
path = "lib.rs"
test = false
bench = false
[[test]]
name = "coretests"
path = "../libcore/tests/lib.rs"
[[bench]]
name = "corebenches"
path = "../libcore/benches/lib.rs"
2020-06-08 11:09:21 -05:00
test = true
[dev-dependencies]
2019-08-04 07:27:48 -05:00
rand = "0.7"
[features]
# Make panics and failed asserts immediately abort without formatting any message
panic_immediate_abort = []