arpabet 2.0.0

A library for builing text to speech applications.
docs.rs failed to build arpabet-2.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: arpabet-1.0.0

Arpabet (A1 R P AH0 B EH2 T), a library for speech synthesis that leverages Carnegie Mellon University's CMUdict. This is a simple library to enable the building of concatenative speech synthesis engines.

Usage:

extern crate arpabet;
use arpabet::load_cmudict;

let arpabet = load_cmudict();

assert_eq!(arpabet.get_polyphone_str("test"),
Some(vec!["T".into(), "EH1".into(), "S".into(), "T".into()]));