OxIRI is a simple and fast implementation of IRIs based on RFC 3987.
It allows zero stack allocation IRI validation and resolution.
Example: ```rust use oxiri::Iri;
// Parse and validate base IRI let base_iri = Iri::parse("http://foo.com/bar/baz").unwrap();
// Validate and resolve relative IRI let iri = baseiri.resolve("bat#foo").unwrap(); asserteq!("http://foo.com/bar/bat#foo", iri.into_inner()); ```
This project is licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Futures by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.