formdata

Crates.ioformdata
lib.rsformdata
version0.13.0
sourcesrc
created_at2015-06-11 04:44:35.692922
updated_at2020-10-01 19:11:03.067299
descriptionParsing of multipart/form-data
homepage
repositoryhttps://github.com/mikedilger/formdata
max_upload_size
id2357
size32,736
Michael Dilger (mikedilger)

documentation

https://mikedilger.github.io/formdata

README

formdata

Build Status MIT licensed

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.

Commit count: 164

cargo fmt