29 lines
		
	
	
		
			652 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			652 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "reqwest"
 | |
| version = "0.0.0"
 | |
| description = "higher level HTTP client library"
 | |
| keywords = ["http", "request", "client"]
 | |
| repository = "https://github.com/seanmonstar/reqwest"
 | |
| documentation = "https://docs.rs/reqwest"
 | |
| authors = ["Sean McArthur <sean.monstar@gmail.com>"]
 | |
| license = "MIT/Apache-2.0"
 | |
| 
 | |
| [dependencies]
 | |
| hyper = { version = "0.9" , default-features = false }
 | |
| log = "0.3"
 | |
| serde = "0.8"
 | |
| serde_json = "0.8"
 | |
| url = "1.0"
 | |
| 
 | |
| [dependencies.native-tls]
 | |
| git = "https://github.com/sfackler/rust-native-tls"
 | |
| optional = true
 | |
| 
 | |
| [features]
 | |
| default = ["openssl"]
 | |
| openssl = ["hyper/ssl"]
 | |
| tls = ["native-tls"]
 | |
| 
 | |
| [dev-dependencies]
 | |
| env_logger = "0.3"
 |