## sensitive_words A Rust crate that contains a list of words that you wouldn't want said out loud, curated by people that hopefully know which words are okay to use in a normal environment. The initial list of words is taken from [LDNOOBW](https://github.com/LDNOOBW/List-of-Dirty-Naughty-Obscene-and-Otherwise-Bad-Words), but has been heavily altered. ## Installation and Usage In your `Cargo.toml`: ``` [dependencies] sensitive_words = "1.0.2" ``` ``` use sensitive_words::words; let w: Vec = words(); ``` ## License See [LICENSE](./LICENSE).