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

Download history 285/week @ 2024-08-12 19/week @ 2024-08-19 13/week @ 2024-08-26 6/week @ 2024-09-02 6/week @ 2024-09-09 8/week @ 2024-09-16 12/week @ 2024-09-23 13/week @ 2024-09-30 24/week @ 2024-10-07 10/week @ 2024-10-14

59 downloads per month

MIT OR 0BSD

15KB
226 lines

Content-Disposition

Crate

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