Austin Bonander

Results 748 comments of Austin Bonander

The default client side API lets you generate request bodies in a streaming fashion, though I don't have it set up for working with a raw `Write` impl I could...

On a side-note, have you looked at the [`mock`](https://docs.rs/multipart/0.14.2/multipart/mock/index.html) module at all?

Yeah a new issue would be preferable. You would use `mock::ClientRequest` with `client::Client`, I dunno if that was very clear. That would allow you to serialize the body out to...

@konstin leaving this open cause I'm not sure how to address it but `.prepare()` is not meant to be called more than once in a row; the fields you set...

`src/local_test.rs` is an integration test where the client-side "sends" a request to the server-side via an in-memory buffer, and then checks that it parses all fields correctly. It also randomizes...

Everything takes time to implement, and my focus is constantly shifting and I also have bills to pay. For the most part, it's just me maintaining this crate. There's not...

I've started fuzzing. It has been pretty helpful but also a bit tedious. I've been able to tease out a few different infinite-looping bugs so far. It seems to have...

What are you using to submit the request? Can you capture the raw request body? It's trying to interpret some binary field in the request as text but the image...

Looking at the code, the error is occurring when trying to write the file contents to the response, but I haven't found which component is actually trying to parse the...

@GitStonic nevermind capturing the request body, I just need to find where it's trying to parse the file as a string. It's somewhere in the call tree of `process_entries()`. I...