20 lines
		
	
	
		
			494 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			494 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "http_core"
 | |
| version = "0.1.0"
 | |
| edition = "2021"
 | |
| description = "Core traits and types for building API clients with http_derive"
 | |
| license = "MIT OR Apache-2.0"
 | |
| 
 | |
| [dependencies]
 | |
| anyhow = "1.0.100"
 | |
| async-trait = "0.1"
 | |
| reqwest = { version = "0.12.23" , features = ["json", "rustls-tls"] }
 | |
| serde = { version = "1", features = ["derive"] } 
 | |
| serde_json = "1.0.145"
 | |
| toml = "0.9.5"
 | |
| urlencoding = "2" 
 | |
| tokio = { version = "1.47", features = ["full"] }
 | |
| once_cell = "1.19"
 | |
| num_cpus = "1.16"
 | |
| 
 |