A library for working with relative URIs, based on the url
crate.
```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());
} ```
Current version: 0.3.0
License: MIT