| Crates.io | multidict |
| lib.rs | multidict |
| version | 0.3.0 |
| created_at | 2025-01-09 20:16:16.849533+00 |
| updated_at | 2025-01-12 01:55:42.39263+00 |
| description | Python MultiDict implementation. |
| homepage | https://crates.io/crates/multidict |
| repository | https://github.com/Red-Panda-Dev/multidict |
| max_upload_size | |
| id | 1510470 |
| size | 26,179 |
The multidict crate was inspired by Python MultiDict library.
multidict is useful for working with HTTP headers, URL query, form-data args etc.
HTTP Headers and URL query string require specific data structure: multidict.
It behaves mostly like a regular map but it may have several values for the same key and preserves insertion ordering
We recommend using the latest version of Rust. multidict supports Rust 2021.
Install by Cargo command:
cargo add multidict
Add line in your Cargo.toml file:
multidict = "0.0.1"
Run full tests (with docstrings):
cargo test
Or only project specified tests:
cargo test --tests