# `codephrases` A Rust library for generating memorable code phrases in the form `AdjectiveNounVerbAdverb.` Note that this library has insufficient entropy for generating passphrases. You probably want diceware for that. ```rust use codephrases::random_codephrase; let phrase = random_codephrase(); // "PinkContradictionsYellFast" ``` ## License The word lists are adapted from [jist/js-utils](https://github.com/jitsi/js-utils) at commit [`2639462`](https://github.com/jitsi/js-utils/blob/2639462719185599bc54e15233f9154e2d016a82/random/roomNameGenerator.js]) which is Apache 2.0 licensed. MIT (see [`LICENSE`](./LICENSE)).