2016-01-22 00:19:23 +01:00
|
|
|
[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"
|
2016-01-22 00:19:23 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
2016-11-25 22:13:59 +01:00
|
|
|
bench = false
|
2016-04-29 23:23:15 +02:00
|
|
|
|
|
|
|
[[test]]
|
2017-04-03 16:53:04 +02:00
|
|
|
name = "coretests"
|
2020-06-12 04:31:49 +02:00
|
|
|
path = "tests/lib.rs"
|
2016-11-25 22:13:59 +01:00
|
|
|
|
2017-02-04 00:04:22 +01:00
|
|
|
[[bench]]
|
2017-02-06 11:38:47 +01:00
|
|
|
name = "corebenches"
|
2020-06-12 04:31:49 +02:00
|
|
|
path = "benches/lib.rs"
|
2020-06-08 18:09:21 +02:00
|
|
|
test = true
|
2018-02-26 18:07:16 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-04 14:27:48 +02:00
|
|
|
rand = "0.7"
|
2018-11-29 22:06:10 +01:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# Make panics and failed asserts immediately abort without formatting any message
|
|
|
|
panic_immediate_abort = []
|