--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/lib.rs Fri Nov 28 12:48:17 2025 -0500 @@ -0,0 +1,18 @@ +// The main documentation is in the README. +#![doc = include_str!("../README.md")] +// We use unicode. We would like to use much more of it than Rust allows. +// Live with it. Embrace it. +#![allow(uncommon_codepoints)] +#![allow(mixed_script_confusables)] +#![allow(confusable_idents)] + +mod base; +pub use base::*; +mod delta; +pub use delta::*; +mod discrete; +pub use discrete::*; +pub mod merging; + +#[cfg(feature = "pyo3")] +pub mod python;