Skip to main content

iri_s/
lib.rs

1//! IRI simple wrapper
2//!
3//! This module contains a simple wrapper to work with IRIs
4//! The main goal is that we can use a simple interface to work with IRIs
5//! which could be adapted to different implementations in the future if needed.
6//!
7//! The library provides the macro [`iri`] to create [`IriS`] from strings.
8//!
9pub mod error;
10mod iri;
11mod mime_type;
12
13pub use crate::iri::{Iri, IriS};
14pub use crate::mime_type::MimeType;