form-data-builder

This is a simple multipart/form-data (RFC 7578) document builder.

```rust use formdatabuilder::FormData;

let mut form = FormData::new(Vec::new()); // use a Vec as a writer form.contenttypeheader(); // add this Content-Type header to your HTTP request

form.writepath("ferris", "testdata/rustacean-flat-noshadow.png", "image/png")?; form.writefield("cute", "yes")?; form.finish(); // returns the writer ```

Looking for a feature-packed, asynchronous, robust, and well-tested multipart/form-data library that validates things like content types? We hope you find one somewhere!

License: MIT-0