X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=library%2Fcore%2FCargo.toml;h=b6aaf078cf00d6ad140fa5add446d838cf3a4f59;hb=ad2a80e412768fd2c9a162a3b68e1489af446f2f;hp=c1596012eac241a4897a1665ff125197b369da1a;hpb=52cf01c81579fa1add25e935d26de8cd3e9ea1d7;p=rust.git diff --git a/library/core/Cargo.toml b/library/core/Cargo.toml index c1596012eac..b6aaf078cf0 100644 --- a/library/core/Cargo.toml +++ b/library/core/Cargo.toml @@ -2,6 +2,9 @@ authors = ["The Rust Project Developers"] name = "core" version = "0.0.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-lang/rust.git" +description = "The Rust Core Library" autotests = false autobenches = false edition = "2018" @@ -25,3 +28,6 @@ rand = "0.7" [features] # Make panics and failed asserts immediately abort without formatting any message panic_immediate_abort = [] +# Make `RefCell` store additional debugging information, which is printed out when +# a borrow error occurs +debug_refcell = []