mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	This was done in #145740 and #145947. It is causing problems for people using r-a on anything that uses the rustc-dev rustup package, e.g. Miri, clippy. This repository has lots of submodules and subtrees and various different projects are carved out of pieces of it. It seems like `[workspace.dependencies]` will just be more trouble than it's worth.
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_pattern_analysis"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
rustc-hash = "2.0.0"
 | 
						|
rustc_abi = { path = "../rustc_abi", optional = true }
 | 
						|
rustc_apfloat = "0.2.0"
 | 
						|
rustc_arena = { path = "../rustc_arena", optional = true }
 | 
						|
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
 | 
						|
rustc_errors = { path = "../rustc_errors", optional = true }
 | 
						|
rustc_fluent_macro = { path = "../rustc_fluent_macro", optional = true }
 | 
						|
rustc_hir = { path = "../rustc_hir", optional = true }
 | 
						|
rustc_index = { path = "../rustc_index", default-features = false }
 | 
						|
rustc_macros = { path = "../rustc_macros", optional = true }
 | 
						|
rustc_middle = { path = "../rustc_middle", optional = true }
 | 
						|
rustc_session = { path = "../rustc_session", optional = true }
 | 
						|
rustc_span = { path = "../rustc_span", optional = true }
 | 
						|
smallvec = { version = "1.8.1", features = ["union"] }
 | 
						|
tracing = "0.1"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "ansi"] }
 | 
						|
tracing-tree = "0.3.0"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[features]
 | 
						|
# tidy-alphabetical-start
 | 
						|
default = ["rustc"]
 | 
						|
rustc = [
 | 
						|
    "dep:rustc_abi",
 | 
						|
    "dep:rustc_arena",
 | 
						|
    "dep:rustc_data_structures",
 | 
						|
    "dep:rustc_errors",
 | 
						|
    "dep:rustc_fluent_macro",
 | 
						|
    "dep:rustc_hir",
 | 
						|
    "dep:rustc_macros",
 | 
						|
    "dep:rustc_middle",
 | 
						|
    "dep:rustc_session",
 | 
						|
    "dep:rustc_span",
 | 
						|
    "smallvec/may_dangle",
 | 
						|
    "rustc_index/nightly",
 | 
						|
]
 | 
						|
# tidy-alphabetical-end
 |