asonix
asonix
I just finished watching the video from yesterday's stream and I wanted to point out the reason for the implementation of conditionallyRemoveHead in the java codebase Say we have 2...
I'm trying to test an API that serves files, and drill is reporting that the requests are completing much faster than they should, since it makes no attempt to download...
It would be helpful for testing file-upload APIs
When working with middlewares, I needed to destructure into the ConnectRequest and RequestHeadType to add new headers into the request. If `RequestHeadType::Rc` defaulted to having an empty headermap instead of...
Inspired by https://github.com/spacejam/sled/issues/1368 I don't know if this is something you care to merge or not, but I've done the work to implement a more "standard" way to interact with...
Something like ```rust pub trait FormWithState { type State; fn as_state(&self) -> Self::State; } impl FormWithState for CreatePostForm { type State = CreatePostFormState; fn as_state(&self) -> Self::State { CreatePostFormState {...
Here it is! I hope y'all find it useful (in the future. I don't have support for Rocket yet, and the hyper and reqwest implementations are not currently tested) https://github.com/asonix/http-signatures
This has a few benefits: 1. Consumers of this crate are now capable of bringing their own HTTP Clients (so long as they produce futures that are Send) 2. Consumers...
It looks like version 2.0 has been pushed to crates.io, but it doesn't seem like anything has changed in this async-task repo in a few months. Is this just local...
Using RwLocks in a tokio threadpool can cause performance issues since one future on one thread can block other futures on other threads, when those other threads could potentially be...