# dhoni (ধ্বনি)
[](https://travis-ci.org/OpenBangla/dhoni)
[](https://crates.io/crates/dhoni)
[](https://docs.rs/dhoni)
A crate for converting Bengali text into their phonetic counterpart.
*Requires Rust version >= 1.31*
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
dhoni = "0.1"
```
## Example
This example shows how to use this crate:
```rust
use dhoni::convert_to_phonetic;
let banglish = convert_to_phonetic("আমি");
assert_eq!(banglish, "ami");
```
## License
`dhoni` is distributed under the terms of MIT License.
See [LICENSE](https://github.com/OpenBangla/dhoni/blob/master/LICENSE) for details.