8 releases (5 stable)

3.0.0 Nov 5, 2022
2.1.1 Apr 30, 2022
2.0.0 Mar 28, 2022
2.0.0-beta.1 Jan 27, 2022
0.1.1 Jan 15, 2022

#1099 in Parser implementations

Download history 94/week @ 2024-01-06 67/week @ 2024-01-13 30/week @ 2024-01-20 37/week @ 2024-01-27 63/week @ 2024-02-03 48/week @ 2024-02-10 125/week @ 2024-02-17 104/week @ 2024-02-24 108/week @ 2024-03-02 238/week @ 2024-03-09 199/week @ 2024-03-16 191/week @ 2024-03-23 119/week @ 2024-03-30 294/week @ 2024-04-06 189/week @ 2024-04-13 212/week @ 2024-04-20

865 downloads per month
Used in serv4rs

LGPL-3.0

55KB
1K SLoC

Actix Easy Multipart

Build status crates.io docs.rs

Typed multipart form extractor for actix-web.

Example

use actix_web::Responder;
use actix_easy_multipart::{File, FromMultipart};
use actix_easy_multipart::extractor::MultipartForm;

#[derive(MultipartForm)]
struct Upload {
    description: Option<Text<String>>,
    timestamp: Text<i64>,
    #[multipart(rename="image_set[]")
    image_set: Vec<Tempfile>,
}

async fn route(form: MultipartForm<Upload>) -> impl Responder {
    format!("Received 5 images: {}", form.image_set.len())
}

Features

  • Receiving optional fields, using Option.
  • Receiving lists of fields, using Vec<T>.
  • Deserialize integers, floats, enums from plain text fields using Text<T>.
  • Deserialize complex data from JSON uploads, using Json<T>.
  • Receive file uploads into temporary files on disk, using Tempfile.
  • User customisable asynchronous field readers, for example you may want to stream form data to an object storage service, just implement the FieldReader trait.

Versions and Compatibility

actix-easy-multipart actix-web tokio
0.x 2.x 0.2
1.x 3.x 0.2
2.x 4.x 1
3.x 4.x 1

See Also

Dependencies

~19–32MB
~606K SLoC