dpc
dpc
Oh, that would be fast and awesome. All sounds good to me, and up to you. `astra` is a good name. I played a bit with: wrap, axum, rocket, rouille,...
I'm yak shaving some stuff, but will get back to it sometime next week.
Finally found some time to look at it. From the example: ``` fn main() { Router::new() .get("/", hello_world) .group( "/foo", Group::new() .get("/", get_foo) .get("/index", get_foo) .post("/new", create_foo), ) .layer(layer_fn(logger)) .serve("localhost:3000")...
40x ? WTH :D
It's hard to explain such a huge difference by even bad FFI alone. Are the versions being used the same, etc.? I mean 40ms per iteration seems more like some...
> * the spinner stopping indicates either the UI is frozen or the LSP is stuck on something. I just looked at the spinners behavior on our 100k LoC Rust...
@SergioBenitez : Yes. So I think I want `on_request`-like hook for request guards. Right now in `from_request` I don't know if the route will be actually taken, so I have...
@SergioBenitez I don't think users should have to figure out the right order of elements, especially that nothing can enforce it, and mistakes would lead to weird bugs. That's why...
Hmmm... But then in my `RateLimiter` I'm returning a special error case, that is being handled in `Response` implementation of `Result, and this displays a nice "too fast, try in...
The branch existed locally in my local repo, as the commit is in a private fork, so I couldn't really point at any upstream PR number. So I started with...