Michal 'vorner' Vaner
Michal 'vorner' Vaner
Going through the documentation, all the examples of the handlers have `()` as an error. Should the examples be using (or at least some of them) `tower_web::Error`?
Hmm, I think an example of how to use these errors properly would be nice, then. I mean, if I have something like `/users/:username` path, it matches and then I...
As for the ones that are not easy to write, there'll need to be some design (or try to find some other projects doing something similar) on how to test...
Turning all the ones from command line is done in v0.2.4. The ones from configuration wouldn't work ‒ the configuration may be reloaded later on.
Hello I'd agree that the used SeqCsq used everywhere is _probably_ stronger than necessary. But if you read the big comment at the top of the file, it explains why...
Windows is kind of a secondary platform, since its support of signals is very limited. Parts of the crate are not available there as a result. You can turn these...
I'm looking into it right now. The `signal-hook` with default features builds OK on windows (well, with some warnings about unused imports, but :shrug:). But the signal-hook-tokio depends on the...
Hello That Py_IsInitialized doesn't seem like a proper solution. The state could change between checking it and then calling the `with_gil`. I think we want to have a solution, but...
Hello I've taken the liberty to transfer the issue to the library repo instead of the blog repo, where it seems to be more appropriate place. I think I've seen...
Maybe I'm a bit confused. Originally, I did want to use the intrinsics, but the current code and my current plan is to not touch any intrinsics at all, in...