Pierre Krieger
Pierre Krieger
Don't merge before the trait is stable.
Instead of providing a single member `headers: Vec`, the Response should have multiple members each corresponding to a header.
In order to support HTTP 2 push, there must be a way to indicate a list of resources that the network layer should push alongside with the current response. I...
Add this: ```rust fn handle(request: &Request, cache: &rouille::cache::Cache) -> Response { cache.with(|request| { Response::text("hello world") }) } ``` The `Cache` struct contains cache entries. The `with` function (whose name may...
Modify the various input-parsing functions to return an error if the body is larger than a certain limit.