adwhit

Results 29 comments of adwhit

I tried to write some better tests today prior to release, and got bitten by https://github.com/diesel-rs/diesel/issues/3386 - probably should wait for an update

Yep, I just ran into this too

This is not being actively worked on at the moment, though I would accept a PR.

Yes, I intend to work on this next. PRs always welcome of course!

Thanks for your hard work! I've got plenty of good use out of this crate in the past, looking forward to taking it further.

Hi, thanks for your comments. I do intend to write a section along the lines of "Why does this exist??". Have been trying to improve the documentation over last few...

> Please allow me to humbly suggest a feature that I found useful in my projects, and I'm not sure hsr supports: Complex parameter objects as specified here Interesting. At...

Hi, thanks for your interest. Error handling: is a slightly tricky one. Versions `0.1` and `0.2` allowed the user to return `Result` from the handlers. But I found this did...

Pretty much agree with @diegopy here. For libraries, create your own precise types with `thiserror`. For applications, propagate errors with `anyhow`. However, for this particular framework, error types will be...