1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../readme.md")]
#![warn(missing_docs)]

mod cache;
mod identifier;
mod text;

pub use crate::{
    cache::SourceCache,
    identifier::{SourceID, SourcePath},
    text::{SourceLine, SourceSpan, SourceText},
};
pub use url::Url;