mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_driver"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[lib]
 | 
						|
crate-type = ["dylib"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
libc = "0.2"
 | 
						|
tracing = { version = "0.1.28" }
 | 
						|
rustc_log = { path = "../rustc_log" }
 | 
						|
rustc_middle = { path = "../rustc_middle" }
 | 
						|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
 | 
						|
rustc_target = { path = "../rustc_target" }
 | 
						|
rustc_lint = { path = "../rustc_lint" }
 | 
						|
rustc_data_structures = { path = "../rustc_data_structures" }
 | 
						|
rustc_errors = { path = "../rustc_errors" }
 | 
						|
rustc_feature = { path = "../rustc_feature" }
 | 
						|
rustc_hir = { path = "../rustc_hir" }
 | 
						|
rustc_hir_pretty = { path = "../rustc_hir_pretty" }
 | 
						|
rustc_metadata = { path = "../rustc_metadata" }
 | 
						|
rustc_const_eval = { path = "../rustc_const_eval" }
 | 
						|
rustc_parse = { path = "../rustc_parse" }
 | 
						|
rustc_plugin_impl = { path = "../rustc_plugin_impl" }
 | 
						|
rustc_save_analysis = { path = "../rustc_save_analysis" }
 | 
						|
rustc_codegen_ssa = { path = "../rustc_codegen_ssa" }
 | 
						|
rustc_session = { path = "../rustc_session" }
 | 
						|
rustc_error_codes = { path = "../rustc_error_codes" }
 | 
						|
rustc_interface = { path = "../rustc_interface" }
 | 
						|
rustc_serialize = { path = "../rustc_serialize" }
 | 
						|
rustc_ast = { path = "../rustc_ast" }
 | 
						|
rustc_span = { path = "../rustc_span" }
 | 
						|
rustc_typeck = { path = "../rustc_typeck" }
 | 
						|
 | 
						|
[target.'cfg(windows)'.dependencies]
 | 
						|
winapi = { version = "0.3", features = ["consoleapi", "debugapi", "processenv"] }
 | 
						|
 | 
						|
[features]
 | 
						|
llvm = ['rustc_interface/llvm']
 | 
						|
max_level_info = ['rustc_log/max_level_info']
 |