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 20:02:19 +02:00
autotests = false
autobenches = false
2019-04-15 04:23:21 +02:00
edition = "2018"
[lib]
test = false
bench = false
[[test]]
name = "coretests"
2020-06-12 04:31:49 +02:00
path = "tests/lib.rs"
[[bench]]
name = "corebenches"
2020-06-12 04:31:49 +02:00
path = "benches/lib.rs"
2020-06-08 18:09:21 +02:00
test = true
[dev-dependencies]
2019-08-04 14:27:48 +02:00
rand = "0.7"
[features]
# Make panics and failed asserts immediately abort without formatting any message
panic_immediate_abort = []