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.
		
			
				
	
	
		
			26 lines
		
	
	
		
			659 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			659 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
# We need to use a separate crate including library/proc_macro as opposed to a
 | 
						|
# direct path dependency on library/proc_macro because doing the latter will
 | 
						|
# cause two copies of libproc_macro.rlib to end up in the sysroot, breaking
 | 
						|
# proc-macro crates. In addition it confuses the workspace_members function of
 | 
						|
# bootstrap.
 | 
						|
 | 
						|
[package]
 | 
						|
name = "rustc_proc_macro"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
[lib]
 | 
						|
path = "../../library/proc_macro/src/lib.rs"
 | 
						|
test = false
 | 
						|
doctest = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
rustc-literal-escaper = "0.0.5"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[features]
 | 
						|
# tidy-alphabetical-start
 | 
						|
rustc-dep-of-std = []
 | 
						|
# tidy-alphabetical-end
 |