#uri #url #parser

pathetic

Relative URI library for Rust, based on the url crate

4 releases (2 breaking)

0.3.0 Mar 18, 2020
0.2.1 Mar 16, 2020
0.2.0 Mar 13, 2020
0.1.0 Mar 6, 2020

#1019 in HTTP server

Download history 46/week @ 2023-12-10 4/week @ 2023-12-31 15/week @ 2024-01-14 30/week @ 2024-01-21 10/week @ 2024-02-04 17/week @ 2024-02-11 24/week @ 2024-02-18 28/week @ 2024-02-25 5/week @ 2024-03-03 8/week @ 2024-03-10 8/week @ 2024-03-17

51 downloads per month

MIT license

10KB
158 lines

pathetic

Docs Crates.io

A library for working with relative URIs, based on the url crate.

Usage:

fn main() {
    let uri = pathetic::Uri::default()
        .with_path_segments_mut(|p| p.extend(&["foo", "bar"]))
        .with_query_pairs_mut(|q| q.append_pair("foo", "bar"))
        .with_fragment(Some("baz"));

    assert_eq!("/foo/bar?foo=bar#baz", uri.as_str());
}

Current version: 0.3.0

License: MIT


lib.rs:

A library for working with relative URIs, based on the url crate.

Usage:

fn main() {
    let uri = pathetic::Uri::default()
        .with_path_segments_mut(|p| p.extend(&["foo", "bar"]))
        .with_query_pairs_mut(|q| q.append_pair("foo", "bar"))
        .with_fragment(Some("baz"));

    assert_eq!("/foo/bar?foo=bar#baz", uri.as_str());
} 

Dependencies

~1.4–6MB
~146K SLoC