rhyme 0.1.1

Uses the CMU Pronunciation Dictionary to determine if two words rhyme
Documentation

Rhyme

This crate uses the CMU Pronunciation Dictionary to determine if two words rhyme or not

Example

extern crate rhyme;

use rhyme::{Result, rhymes};

fn main() -> Result<()> {
    if rhyme.rhymes("rust", "trust").unwrap_or(false) {
        println!("'rust' and 'trust' rhyme");
    }
    Ok(())
}