2016-01-21 23:19:23 +00:00
|
|
|
[package]
|
|
|
|
authors = ["The Rust Project Developers"]
|
|
|
|
name = "core"
|
|
|
|
version = "0.0.0"
|
2018-05-10 18:02:19 +00:00
|
|
|
autotests = false
|
|
|
|
autobenches = false
|
2019-04-15 02:23:21 +00:00
|
|
|
edition = "2018"
|
2016-01-21 23:19:23 +00:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
test = false
|
2016-11-25 21:13:59 +00:00
|
|
|
bench = false
|
2016-04-29 21:23:15 +00:00
|
|
|
|
|
|
|
[[test]]
|
2017-04-03 14:53:04 +00:00
|
|
|
name = "coretests"
|
2020-06-12 02:31:49 +00:00
|
|
|
path = "tests/lib.rs"
|
2016-11-25 21:13:59 +00:00
|
|
|
|
2017-02-03 23:04:22 +00:00
|
|
|
[[bench]]
|
2017-02-06 10:38:47 +00:00
|
|
|
name = "corebenches"
|
2020-06-12 02:31:49 +00:00
|
|
|
path = "benches/lib.rs"
|
2020-06-08 16:09:21 +00:00
|
|
|
test = true
|
2018-02-26 17:07:16 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-04 12:27:48 +00:00
|
|
|
rand = "0.7"
|
2018-11-29 21:06:10 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
# Make panics and failed asserts immediately abort without formatting any message
|
|
|
|
panic_immediate_abort = []
|