mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	The main new feature is support for detecting the current stack size on illumos. (See my blog post [1] for the context which led to this.) [1]: https://sunshowers.io/posts/rustc-segfault-illumos/
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rustc_data_structures"
 | 
						|
version = "0.0.0"
 | 
						|
edition = "2021"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
arrayvec = { version = "0.7", default-features = false }
 | 
						|
bitflags = "2.4.1"
 | 
						|
either = "1.0"
 | 
						|
elsa = "=1.7.1"
 | 
						|
ena = "0.14.3"
 | 
						|
indexmap = { version = "2.4.0" }
 | 
						|
jobserver_crate = { version = "0.1.28", package = "jobserver" }
 | 
						|
measureme = "11"
 | 
						|
rustc-hash = "1.1.0"
 | 
						|
rustc-rayon = { version = "0.5.0", optional = true }
 | 
						|
rustc-stable-hash = { version = "0.1.0", features = ["nightly"] }
 | 
						|
rustc_arena = { path = "../rustc_arena" }
 | 
						|
rustc_graphviz = { path = "../rustc_graphviz" }
 | 
						|
rustc_index = { path = "../rustc_index", package = "rustc_index" }
 | 
						|
rustc_macros = { path = "../rustc_macros" }
 | 
						|
rustc_serialize = { path = "../rustc_serialize" }
 | 
						|
smallvec = { version = "1.8.1", features = ["const_generics", "union", "may_dangle"] }
 | 
						|
stacker = "0.1.17"
 | 
						|
tempfile = "3.2"
 | 
						|
thin-vec = "0.2.12"
 | 
						|
tracing = "0.1"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[dependencies.parking_lot]
 | 
						|
version = "0.12"
 | 
						|
 | 
						|
[target.'cfg(windows)'.dependencies.windows]
 | 
						|
version = "0.52.0"
 | 
						|
features = [
 | 
						|
    "Win32_Foundation",
 | 
						|
    "Win32_Storage_FileSystem",
 | 
						|
    "Win32_System_IO",
 | 
						|
    "Win32_System_ProcessStatus",
 | 
						|
    "Win32_System_Threading",
 | 
						|
]
 | 
						|
 | 
						|
[target.'cfg(unix)'.dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
libc = "0.2"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
 | 
						|
# tidy-alphabetical-start
 | 
						|
memmap2 = "0.2.1"
 | 
						|
# tidy-alphabetical-end
 | 
						|
 | 
						|
[target.'cfg(not(target_has_atomic = "64"))'.dependencies]
 | 
						|
portable-atomic = "1.5.1"
 | 
						|
 | 
						|
[features]
 | 
						|
# tidy-alphabetical-start
 | 
						|
rustc_use_parallel_compiler = ["indexmap/rustc-rayon", "dep:rustc-rayon"]
 | 
						|
# tidy-alphabetical-end
 |