Crates.io | uniresid |
lib.rs | uniresid |
version | 0.1.5 |
source | src |
created_at | 2022-06-28 20:34:34.478115 |
updated_at | 2023-05-18 15:00:53.624803 |
description | URI (Uniform Resource Identifier) parser and data structures |
homepage | |
repository | https://github.com/chanced/uniresid |
max_upload_size | |
id | 615031 |
size | 142,329 |
Uniform Resource Identifiers (RFC 3986) 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.
This crate has been forked from uris. Thanks to Richard Walters for the original implementation and Martin Fischer for his improvements.
Licensed under the MIT license.