Parsing of multipart/form-data
Find a file
2023-09-30 06:54:02 +13:00
src dyn NetworkStream 2020-10-02 08:07:14 +13:00
.gitignore Initial commit, .gitignore 2015-06-09 08:58:03 +12:00
.travis.yml Travis setup, README travis icon, README link to documentation 2015-06-15 09:04:38 +12:00
Cargo.toml prep for 0.14 with 0.14.0-unstable 2020-10-02 08:11:20 +13:00
LICENSE-MIT License and Readme 2015-06-10 10:51:34 +12:00
README.md Note about maintenance of this library 2023-09-30 06:54:02 +13:00

formdata

Build Status MIT licensed

THIS LIBRARY AND REPOSITORY ARE UNMAINTAINED

Documentation is available at https://mikedilger.github.io/formdata

This library provides a type for storing multipart/form-data data, as well as functions to stream (read or write) such data over HTTP.

multipart/form-data format as described by RFC 7578. HTML forms with enctype=multipart/form-data POST their data in this format. This enctype is typically used whenever a form has file upload input fields, as the default application/x-www-form-urlencoded cannot handle file uploads.

Whether reading from a stream or writing out to a stream, files are never stored entirely in memory, but instead streamed through a buffer.