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

#1247 in Parser implementations

Download history 713/week @ 2024-07-22 388/week @ 2024-07-29 442/week @ 2024-08-05 337/week @ 2024-08-12 387/week @ 2024-08-19 411/week @ 2024-08-26 527/week @ 2024-09-02 228/week @ 2024-09-09 179/week @ 2024-09-16 300/week @ 2024-09-23 252/week @ 2024-09-30 246/week @ 2024-10-07 231/week @ 2024-10-14 145/week @ 2024-10-21 201/week @ 2024-10-28 224/week @ 2024-11-04

833 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

~17–29MB
~519K SLoC