Crate rust_multipart_rfc7578_2
source ·Expand description
This crate contains an implementation of the multipart/form-data media type described in RFC 7578.
Usage
Add either the Hyper implementation or the Actix implementation to your Cargo.toml file:
Actix:
[dependencies]
actix-multipart-rfc7578 = "0.10"
and import:
extern crate actix_multipart_rfc7578 as multipart;
Hyper:
[dependencies]
hyper-multipart-rfc7578 = "0.8"
and import:
extern crate hyper_multipart_rfc7578 as multipart;