mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			604 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
authors = ["The Rust Project Developers"]
 | 
						|
name = "rustc-main"
 | 
						|
version = "0.0.0"
 | 
						|
edition = '2018'
 | 
						|
 | 
						|
[dependencies]
 | 
						|
rustc_driver = { path = "../rustc_driver" }
 | 
						|
 | 
						|
# Make sure rustc_codegen_ssa ends up in the sysroot, because this
 | 
						|
# crate is intended to be used by codegen backends, which may not be in-tree.
 | 
						|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
 | 
						|
 | 
						|
[dependencies.jemalloc-sys]
 | 
						|
version = '0.3.0'
 | 
						|
optional = true
 | 
						|
features = ['unprefixed_malloc_on_supported_platforms']
 | 
						|
 | 
						|
[features]
 | 
						|
jemalloc = ['jemalloc-sys']
 | 
						|
llvm = ['rustc_driver/llvm']
 | 
						|
max_level_info = ['rustc_driver/max_level_info']
 |