1
2
3
4
5
6
7
8
9
10
11
//! Self-contained modules used for miscellaneous purposes.
//!
//! These are all candidates for being separated into different crates,
//! tell me if functionality they provide is useful enough to do that.

pub mod ruler;
pub mod sourcemap;
pub mod utils;

mod typekey;
pub use typekey::TypeKey;