A crate for converting Bengali text into their phonetic counterpart.
Requires Rust version >= 1.31
Add this to your Cargo.toml
:
toml
[dependencies]
dhoni = "0.1"
This example shows how to use this crate: ```rust use dhoni::converttophonetic;
let banglish = converttophonetic("আমি"); assert_eq!(banglish, "ami"); ```
dhoni
is distributed under the terms of MIT License.
See LICENSE for details.