uast/lib.rs
1//! Rust implementation of [Unicode Aware Saṃskṛta Transliteration](https://arxiv.org/html/2203.14277).
2//!
3//! The following Unicode code-blocks are used:
4//! - देवनागरी: <https://www.unicode.org/charts/PDF/U0900.pdf>
5//! - ગુજરાતી: <https://www.unicode.org/charts/PDF/U0A80.pdf>
6//!
7//! <div class="warning">
8//! No Unicode normalization is performed. It is assumed that the text is already normalized.
9//! </div>
10
11mod gu;
12mod iast;
13mod slp;
14#[cfg(test)]
15mod tests;
16mod uast;
17mod utils;
18
19pub use crate::gu::devanāgarī_to_gujarātī;
20pub use crate::iast::devanāgarī_to_iast;
21pub use crate::slp::slp_to_iast;
22pub use crate::uast::uast_to_devanāgarī;