mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	Since Rug 1.27.0, `az` is reexported. This means we no longer need to track it as a separate dependency.
		
			
				
	
	
		
			19 lines
		
	
	
		
			681 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			681 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "util"
 | 
						|
version = "0.1.0"
 | 
						|
edition = "2021"
 | 
						|
publish = false
 | 
						|
 | 
						|
[features]
 | 
						|
default = ["build-musl", "build-mpfr", "unstable-float"]
 | 
						|
build-musl = ["libm-test/build-musl", "dep:musl-math-sys"]
 | 
						|
build-mpfr = ["libm-test/build-mpfr", "dep:rug"]
 | 
						|
unstable-float = ["libm/unstable-float", "libm-test/unstable-float", "rug?/nightly-float"]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
libm = { path = "../..", default-features = false }
 | 
						|
libm-macros = { path = "../libm-macros" }
 | 
						|
libm-test = { path = "../libm-test", default-features = false }
 | 
						|
musl-math-sys = { path = "../musl-math-sys", optional = true }
 | 
						|
rug = { version = "1.27.0", optional = true, default-features = false, features = ["float", "std"] }
 |