This crate contains common stop words for a variety of languages. All stop word lists are from this resource
Using this crate is fairly straight-forward: ``` use stop_words;
fn main() { let words = stop_words::get("english"); for word in words { println!("{}", word) } } ```