| Crates.io | parco-multipart |
| lib.rs | parco-multipart |
| version | 0.1.4 |
| created_at | 2026-01-10 21:32:02.215747+00 |
| updated_at | 2026-01-12 21:17:37.565841+00 |
| description | Parco Multipart |
| homepage | https://github.com/williamcparks/parco-multipart |
| repository | https://github.com/williamcparks/parco-multipart |
| max_upload_size | |
| id | 2034708 |
| size | 17,401 |
Multi part message parsing in rust
use parco_multipart::Message;
let msg = r##"
--abc123
Content-Type: text/plain
Hello, this is part 1.
--abc123
Content-Type: text/plain
This is part 2.
--abc123--
"##.trim();
let message = Message::try_parse(msg).unwrap();
for part in message.iter() {
println!("{part:#?}");
}