Crates.io | uris |
lib.rs | uris |
version | 0.1.1 |
source | src |
created_at | 2021-12-05 01:06:13.364684 |
updated_at | 2021-12-05 01:07:32.346166 |
description | Implementation of IETF RFC 3986, Uniform Resource Identifier (URI) |
homepage | |
repository | https://git.push-f.com/uris |
max_upload_size | |
id | 492465 |
size | 117,003 |
This is a library which implements IETF RFC 3986, "Uniform Resource Identifier (URI): Generic Syntax".
More information about this library can be found in the crate documentation.
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 library has been forked from rhymuri because it was unmaintained at the time. Thanks to Richard Walters for the original implementation!
Licensed under the MIT license.