52 lines
		
	
	
		
			998 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			998 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| 
 | |
| name = "hyper"
 | |
| version = "0.6.12"
 | |
| description = "A modern HTTP library."
 | |
| readme = "README.md"
 | |
| documentation = "http://hyperium.github.io/hyper/hyper/index.html"
 | |
| 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 = "0.1"
 | |
| language-tags = "0.0.7"
 | |
| log = "0.3"
 | |
| mime = "0.1"
 | |
| num_cpus = "0.2"
 | |
| rustc-serialize = "0.3"
 | |
| time = "0.1"
 | |
| traitobject = "0.0.1"
 | |
| typeable = "0.1"
 | |
| unicase = "1.0"
 | |
| url = "0.2"
 | |
| 
 | |
| [dependencies.cookie]
 | |
| version = "0.1"
 | |
| default-features = false
 | |
| 
 | |
| [dependencies.openssl]
 | |
| version = "0.6.4"
 | |
| optional = true
 | |
| 
 | |
| [dependencies.solicit]
 | |
| version = "0.4"
 | |
| default-features = false
 | |
| 
 | |
| [dependencies.serde]
 | |
| version = "*"
 | |
| optional = true
 | |
| 
 | |
| [dev-dependencies]
 | |
| env_logger = "*"
 | |
| 
 | |
| [features]
 | |
| default = ["ssl"]
 | |
| ssl = ["openssl", "cookie/secure"]
 | |
| serde-serialization = ["serde"]
 | |
| timeouts = []
 | |
| nightly = ["timeouts"]
 |