httparse is a http1 stateless push parser. This not only speeds up parsing right now with sync io, but will also be useful for when we get async io, since it's push based instead of pull. BREAKING CHANGE: Several public functions and types in the `http` module have been removed. They have been replaced with 2 methods that handle all of the http1 parsing.
		
			
				
	
	
		
			28 lines
		
	
	
		
			565 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			565 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| 
 | |
| name = "hyper"
 | |
| version = "0.3.0"
 | |
| 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]
 | |
| cookie = "*"
 | |
| httparse = "*"
 | |
| log = ">= 0.2.0"
 | |
| mime = "*"
 | |
| openssl = "*"
 | |
| rustc-serialize = "*"
 | |
| time = "*"
 | |
| unicase = "*"
 | |
| url = "*"
 | |
| 
 | |
| [dev-dependencies]
 | |
| env_logger = "*"
 | |
| 
 |