CMUSphinx pronunciation dictionary

This is a fork of the original rust library for getting pronunciations from the CMUSphinx pronunciation dictionary.

:warning: 0.6.0 onward is not api compatible with the original crate. 0.5.0 or before is mostly api compatible but notably doesn't have the download utility function.

Changelog

The last of those changes is where the name comes from - as a result of the entire dictionary being loaded into volitile memory, each individual lookup is much faster than the original crate (should be O(1) on average with worst case O(n)). Of course, there's the downside that it takes longer to createthe object and uses more memory, but for the application I initially created this for the lookup time was essential.

Installation

To use in your rust project, add the following to your Cargo.toml:

toml,ignore [dependencies] cmudict-fast = "0.7"

Usage

To use the dictionary, you have to get an instance of the Cmudict struct:

```rust,ignore use cmudict_fast::Cmudict;

fn main() { let dict = Cmudict::new("./path/to/a/cmudict/file").expect("Couldn't make Cmudict"); } ```

You can retrieve the pronunciation for a word like this:

```rust use cmudict_fast::Cmudict;

fn main() { let dict = Cmudict::new("path/to/cmudict").expect("Couldn't get/make Cmudict"); let word = dict.get("apple").unwrap().pronunciation(); println!("{:?}", word); // &[Symbol::AE(Stress::Primary), Symbol::P, Symbol::AH(Stress::None), Symbol::L] } ```