- added clippy lints and fixed the resulting issues - moved build_possible_values_db() into the new() call - extracted the skip_db functionality into their own functions
		
			
				
	
	
		
			20 lines
		
	
	
		
			309 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			309 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "sudk"
 | |
| version = "0.1.0"
 | |
| authors = ["ddidderr <ddidderr@paul.network>"]
 | |
| edition = "2021"
 | |
| 
 | |
| [lints.clippy]
 | |
| pedantic = { level = "warn", priority = -1 }
 | |
| todo = "warn"
 | |
| unwrap_used = "warn"
 | |
| 
 | |
| [dependencies]
 | |
| 
 | |
| [profile.release]
 | |
| lto = true
 | |
| debug = false
 | |
| strip = true
 | |
| panic = "abort"
 | |
| codegen-units = 1
 |