rustful
rustful copied to clipboard
[OUTDATED] A light HTTP framework for Rust
Example code to reproduce: ```rust let mut router = TreeRouter::new(); insert_routes! { &mut router => { "graph" => Get: Box::new(move |_: Context, _: Response| {}) as Box, } }; ```...
Having a `'static` lifetime requirement on `Handler`s seriously cripples handlers. This means you cannot have any `&T`s in `Handler`s that aren't static also. I encountered this problem today while trying...
Currently the documentation links points towards what's in the master branch, which will quite soon diverge after a release. The links should be changed to point to https://docs.rs/rustful/X/rustful/, where X...
I'm expecting this to involve some design choices, so it's more of a tracking issue than something for anyone to pick up (unless you are confident enough).
This is currently blocked by some variant of rust-lang/cargo#1592 .
For example `foo[]=bar1&foo[]=bar2`. This is useful enough to be supported, I think, even though it's non-standard. I don't yet have a specific design in mind, so it's wide open for...