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