#zero-allocation #multipart #reader-writer #streaming #http #async

multipart-rs

A simple, zero-allocation, streaming, async multipart reader & writer for Rust

16 releases

0.2.1 Nov 29, 2024
0.2.0 Nov 28, 2024
0.1.13 Nov 25, 2024
0.1.11 Jul 25, 2024
0.1.8 Mar 6, 2024

#979 in Web programming

Download history 1857/week @ 2024-10-19 1414/week @ 2024-10-26 1555/week @ 2024-11-02 1887/week @ 2024-11-09 1782/week @ 2024-11-16 2128/week @ 2024-11-23 2509/week @ 2024-11-30 1884/week @ 2024-12-07 1787/week @ 2024-12-14 2046/week @ 2024-12-21 2488/week @ 2024-12-28 1812/week @ 2025-01-04 2058/week @ 2025-01-11 1836/week @ 2025-01-18 1769/week @ 2025-01-25 2032/week @ 2025-02-01

7,968 downloads per month
Used in 3 crates (2 directly)

MIT license

21KB
442 lines

Multipart-RS

A simple, zero-allocation, streaming, async multipart reader & writer for Rust

Reading multipart

let headermap = vec![(
    "Content-Type".to_string(),
    "multipart/form-data; boundary=--974767299852498929531610575".to_string(),
)];
// Lines must end with CRLF
let data = b"--974767299852498929531610575\r
Content-Disposition: form-data; name=\"afile\"; filename=\"a.txt\"\r
\r
Content of a.txt.\r
--974767299852498929531610575\r
Content-Disposition: form-data; name=\"bfile\"; filename=\"b.txt\"\r
Content-Type: text/plain\r
\r
Content of b.txt.\r
--974767299852498929531610575--\r\n";

let reader = MultipartReader::from_data_with_headers(data, &headermap);

loop {
    match reader.next().await {
        Some(Ok(item)) => println!(item),
        Some(Err(e)) => panic!("Error: {:?}", e),
        None => break,
    }
}

Dependencies

~1.5MB
~26K SLoC