https://github.com/chanced/uniresid
Rust implementation of URI (RFC 3986)
https://github.com/chanced/uniresid
Last synced: 5 months ago
JSON representation
Rust implementation of URI (RFC 3986)
- Host: GitHub
- URL: https://github.com/chanced/uniresid
- Owner: chanced
- License: mit
- Created: 2022-06-28T07:29:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-18T15:00:18.000Z (about 3 years ago)
- Last Synced: 2024-10-06T00:41:52.074Z (over 1 year ago)
- Language: Rust
- Size: 136 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# uniresid
[
](https://github.com/chanced/uniresid)
[
](https://crates.io/crates/uniresid)
[
](https://docs.rs/uniresid)
[
](https://github.com/chanced/uniresid/actions?query=branch%3Amain)
**U**niform **R**esource **I**dentifiers ([RFC
3986](https://tools.ietf.org/html/rfc3986)) for rust.
A URI is a compact sequence of characters that identifies an abstract or
physical resource. One common form of URI is the Uniform Resource Locator
(URL), used to reference web resources:
http://www.example.com/foo?bar#baz
Another kind of URI is the path reference:
/usr/bin/zip
The purpose of this library is to provide a `Uri` type to represent a URI,
with functions to parse URIs from their string representations, as well as
assemble URIs from their various components.
## Credits
This crate has been forked from [uris](https://crates.io/crates/uris). Thanks to
Richard Walters for the [original implementation](https://crates.io/crates/rhymuri)
and Martin Fischer for his improvements.
## License
Licensed under the [MIT license](LICENSE.txt).