#![doc = include_str!("../readme.md")]
#![warn(missing_docs)]
mod cache;
mod identifier;
mod source_text;
pub use crate::{
cache::SourceCache,
identifier::{SourceID, SourcePath},
source_text::{SourceLine, SourceSpan, SourceText},
};
pub use url::Url;