mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	`MultiSpan` contains labels, which are more complicated with the introduction of diagnostic translation and will use types from `rustc_errors` - however, `rustc_errors` depends on `rustc_span` so `rustc_span` cannot use types like `DiagnosticMessage` without dependency cycles. Introduce a new `rustc_error_messages` crate that can contain `DiagnosticMessage` and `MultiSpan`. Signed-off-by: David Wood <david.wood@huawei.com>
		
			
				
	
	
		
			22 lines
		
	
	
		
			667 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			667 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_hir"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[lib]
 | 
						|
doctest = false
 | 
						|
 | 
						|
[dependencies]
 | 
						|
rustc_target = { path = "../rustc_target" }
 | 
						|
rustc_feature = { path = "../rustc_feature" }
 | 
						|
rustc_macros = { path = "../rustc_macros" }
 | 
						|
rustc_data_structures = { path = "../rustc_data_structures" }
 | 
						|
rustc_error_messages = { path = "../rustc_error_messages" }
 | 
						|
rustc_index = { path = "../rustc_index" }
 | 
						|
rustc_span = { path = "../rustc_span" }
 | 
						|
rustc_serialize = { path = "../rustc_serialize" }
 | 
						|
rustc_ast = { path = "../rustc_ast" }
 | 
						|
tracing = "0.1"
 | 
						|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
 | 
						|
odht = { version = "0.3.1", features = ["nightly"] }
 |