mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			406 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			406 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
cargo-features = ["public-dependency"]
 | 
						|
 | 
						|
[package]
 | 
						|
name = "rustc-std-workspace-core"
 | 
						|
version = "1.99.0"
 | 
						|
license = 'MIT OR Apache-2.0'
 | 
						|
description = """
 | 
						|
Hack for the compiler's own build system
 | 
						|
"""
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
[lib]
 | 
						|
path = "lib.rs"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
core = { path = "../core", public = true }
 | 
						|
compiler_builtins = { path = "../compiler-builtins/compiler-builtins", features = [
 | 
						|
  "compiler-builtins",
 | 
						|
] }
 |