Pros: Ability to use Rust libraries from crates.io Problems: Need to lock library versions and document their reproducible building, either via Cargo.lock or vendoring.
		
			
				
	
	
		
			9 lines
		
	
	
		
			106 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			106 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "rs"
 | 
						|
version = "0.1.0"
 | 
						|
 | 
						|
[lib]
 | 
						|
name = "rs"
 | 
						|
path = "src/lib.rs"
 | 
						|
crate-type = ["staticlib"]
 |