pathetic

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

Usage:

```rust fn main() { let uri = pathetic::Uri::default() .withpathsegmentsmut(|p| p.extend(&["foo", "bar"])) .withquerypairsmut(|q| q.appendpair("foo", "bar")) .withfragment(Some("baz"));

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

} ```