4 releases (breaking)
0.4.0 | Aug 16, 2024 |
---|---|
0.3.0 | Aug 16, 2024 |
0.2.0 | Aug 16, 2024 |
0.1.0 | Aug 16, 2024 |
#1273 in Parser implementations
59 downloads per month
15KB
226 lines
Content-Disposition
Documentation
See the rustdoc at docs.rs.
API
The primary entry point for this library is the following function:
fn parse_content_disposition(header: &str) -> ParsedContentDisposition
Example
let dis = parse_content_disposition(" form-data; name=\"cover\"; filename=\"exif.jpg\"");
assert_eq!(dis.disposition, DispositionType::FormData);
assert_eq!(dis.name(), Some("cover".to_string()));
assert_eq!(dis.filename(), Some("exif.jpg".to_string()));
MSRV policy
Currently the minimum supported Rust version (MSRV) is 1.51.0. MSRV increases will be kept to a minimum, and will always be accompanied with a minor version bump.
Dependencies
~3.5MB
~124K SLoC