55 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| 
 | |
| name = "hyper"
 | |
| version = "0.9.2"
 | |
| description = "A modern HTTP library."
 | |
| readme = "README.md"
 | |
| documentation = "http://hyperium.github.io/hyper"
 | |
| repository = "https://github.com/hyperium/hyper"
 | |
| license = "MIT"
 | |
| authors = ["Sean McArthur <sean.monstar@gmail.com>",
 | |
|            "Jonathan Reem <jonathan.reem@gmail.com>"]
 | |
| keywords = ["http", "hyper", "hyperium"]
 | |
| 
 | |
| [dependencies]
 | |
| httparse = "1.0"
 | |
| language-tags = "0.2"
 | |
| log = "0.3"
 | |
| mime = "0.2"
 | |
| num_cpus = "0.2"
 | |
| rustc-serialize = "0.3"
 | |
| time = "0.1"
 | |
| traitobject = "0.0.1"
 | |
| typeable = "0.1"
 | |
| unicase = "1.0"
 | |
| url = "1.0"
 | |
| 
 | |
| [dependencies.cookie]
 | |
| version = "0.2"
 | |
| default-features = false
 | |
| 
 | |
| [dependencies.openssl]
 | |
| version = "0.7"
 | |
| optional = true
 | |
| 
 | |
| [dependencies.security-framework]
 | |
| version = "0.1.4"
 | |
| optional = true
 | |
| 
 | |
| [dependencies.solicit]
 | |
| version = "0.4"
 | |
| default-features = false
 | |
| 
 | |
| [dependencies.serde]
 | |
| version = "0.7"
 | |
| optional = true
 | |
| 
 | |
| [dev-dependencies]
 | |
| env_logger = "0.3"
 | |
| 
 | |
| [features]
 | |
| default = ["ssl"]
 | |
| ssl = ["openssl", "cookie/secure"]
 | |
| serde-serialization = ["serde", "mime/serde"]
 | |
| nightly = []
 |