rust/library/core/Cargo.toml

28 lines
446 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]
test = false
bench = false
[[test]]
name = "coretests"
2020-06-11 21:31:49 -05:00
path = "tests/lib.rs"
[[bench]]
name = "corebenches"
2020-06-11 21:31:49 -05:00
path = "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 = []