| -1:000000000000 | 0:e8f3b6c55ce7 |
|---|---|
| 1 // The main documentation is in the README. | |
| 2 #![doc = include_str!("../README.md")] | |
| 3 // We use unicode. We would like to use much more of it than Rust allows. | |
| 4 // Live with it. Embrace it. | |
| 5 #![allow(uncommon_codepoints)] | |
| 6 #![allow(mixed_script_confusables)] | |
| 7 #![allow(confusable_idents)] | |
| 8 | |
| 9 mod base; | |
| 10 pub use base::*; | |
| 11 mod delta; | |
| 12 pub use delta::*; | |
| 13 mod discrete; | |
| 14 pub use discrete::*; | |
| 15 pub mod merging; | |
| 16 | |
| 17 #[cfg(feature = "pyo3")] | |
| 18 pub mod python; |