mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
		
			
				
	
	
		
			33 lines
		
	
	
		
			651 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			651 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
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"
 | 
						|
 | 
						|
[lib]
 | 
						|
test = false
 | 
						|
bench = false
 | 
						|
 | 
						|
[[test]]
 | 
						|
name = "coretests"
 | 
						|
path = "tests/lib.rs"
 | 
						|
 | 
						|
[[bench]]
 | 
						|
name = "corebenches"
 | 
						|
path = "benches/lib.rs"
 | 
						|
test = true
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
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 = []
 |