mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			812 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			812 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "stdarch-test"
 | 
						|
version = "0.1.0"
 | 
						|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
 | 
						|
edition = "2024"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
assert-instr-macro = { path = "../assert-instr-macro" }
 | 
						|
simd-test-macro = { path = "../simd-test-macro" }
 | 
						|
rustc-demangle = "0.1.8"
 | 
						|
cfg-if = "1.0"
 | 
						|
 | 
						|
[target.'cfg(windows)'.dependencies]
 | 
						|
cc = "1.0"
 | 
						|
 | 
						|
# We use a crates.io dependency to disassemble wasm binaries to look for
 | 
						|
# instructions for `#[assert_instr]`. Note that we use an `=` dependency here
 | 
						|
# instead of a floating dependency because the text format for wasm changes over
 | 
						|
# time, and we want to make updates to this explicit rather than automatically
 | 
						|
# picking up updates which might break CI with new instruction names.
 | 
						|
[target.'cfg(target_arch = "wasm32")'.dependencies]
 | 
						|
wasmprinter = "=0.235"
 | 
						|
 | 
						|
[features]
 | 
						|
default = []
 |