iri-rfc3987 0.1.6

Zero-copy parsing, validation, and resolution for Internationalized Resource Identifiers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! IRI recursive-descent parser.
//!
//! Always uses IRI encoders (no ASCII-only branch).

mod common;
mod ip;
mod parser;
mod reader;

#[cfg(test)]
pub(crate) use ip::{parse_v4_or_reg_name, parse_v6};
pub(crate) use parser::parse;