rust/src/libcore/Cargo.toml
2019-04-18 14:47:35 +09:00

28 lines
486 B
TOML

[package]
authors = ["The Rust Project Developers"]
name = "core"
version = "0.0.0"
autotests = false
autobenches = false
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"
[dev-dependencies]
rand = "0.6"
[features]
# Make panics and failed asserts immediately abort without formatting any message
panic_immediate_abort = []