36 releases

0.7.2 Jul 6, 2024
0.6.2 Jun 8, 2024
0.6.1 Aug 29, 2023
0.6.0 Feb 26, 2023
0.1.2 Jun 2, 2019

#1202 in HTTP server

Download history 71997/week @ 2025-09-24 73109/week @ 2025-10-01 79904/week @ 2025-10-08 79394/week @ 2025-10-15 78342/week @ 2025-10-22 71877/week @ 2025-10-29 74857/week @ 2025-11-05 76825/week @ 2025-11-12 85481/week @ 2025-11-19 73560/week @ 2025-11-26 79463/week @ 2025-12-03 77191/week @ 2025-12-10 73629/week @ 2025-12-17 36772/week @ 2025-12-24 47959/week @ 2025-12-31 69500/week @ 2026-01-07

242,293 downloads per month
Used in 90 crates (79 directly)

MIT/Apache

1.5MB
35K SLoC

actix-multipart

crates.io Documentation Version MIT or Apache 2.0 licensed
dependency status Download Chat on Discord

Multipart form support for Actix Web.

Examples

use actix_web::{post, App, HttpServer, Responder};

use actix_multipart::form::{json::Json as MPJson, tempfile::TempFile, MultipartForm};
use serde::Deserialize;

#[derive(Debug, Deserialize)]
struct Metadata {
    name: String,
}

#[derive(Debug, MultipartForm)]
struct UploadForm {
    #[multipart(limit = "100MB")]
    file: TempFile,
    json: MPJson<Metadata>,
}

#[post("/videos")]
pub async fn post_video(MultipartForm(form): MultipartForm<UploadForm>) -> impl Responder {
    format!(
        "Uploaded file {}, with size: {}",
        form.json.name, form.file.size
    )
}

#[actix_web::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(move || App::new().service(post_video))
        .bind(("127.0.0.1", 8080))?
        .run()
        .await
}

cURL request:

curl -v --request POST \
  --url http://localhost:8080/videos \
  -F 'json={"name": "Cargo.lock"};type=application/json' \
  -F file=@./Cargo.lock

More available in the examples repo →

Dependencies

~20–38MB
~546K SLoC