]> git.lizzy.rs Git - rust.git/blob - library/core/Cargo.toml
Merge commit '61eb38aeda6cb54b93b872bf503d70084c4d621c' into clippyup
[rust.git] / library / core / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "core"
4 version = "0.0.0"
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-lang/rust.git"
7 description = "The Rust Core Library"
8 autotests = false
9 autobenches = false
10 edition = "2018"
11
12 [lib]
13 test = false
14 bench = false
15
16 [[test]]
17 name = "coretests"
18 path = "tests/lib.rs"
19
20 [[bench]]
21 name = "corebenches"
22 path = "benches/lib.rs"
23 test = true
24
25 [dev-dependencies]
26 rand = "0.7"
27
28 [features]
29 # Make panics and failed asserts immediately abort without formatting any message
30 panic_immediate_abort = []
31 # Make `RefCell` store additional debugging information, which is printed out when
32 # a borrow error occurs
33 debug_refcell = []