7个版本 (4个稳定版)
1.0.3 | 2024年3月25日 |
---|---|
1.0.2 | 2019年2月10日 |
0.1.2 | 2019年2月10日 |
0.1.1 | 2019年2月10日 |
0.1.0 | 2019年2月3日 |
#53 在 身份验证
每月2,761次下载
在 4 crate 中使用
220KB
9K SLoC
此crate在Rust API下公开了EFF单词列表。有关单词列表的更多信息,请参阅EFF的博客文章。它包含大列表和短列表,每个列表都通过相应的模块提供。
使用large
单词列表的示例
您可以请求一个随机单词
let word = eff_wordlist::large::random_word();
或直接使用列表
let (first_roll, first_word) = eff_wordlist::large::LIST[0];
assert_eq!(11111, first_roll);
assert_eq!("abacus", first_word);
lib.rs
:
此crate在Rust API下公开了EFF单词列表。有关单词列表的更多信息,请参阅EFF的博客文章。它包含大列表和短列表,每个列表都通过相应的模块提供。
示例
您可以请求一个随机单词
let word = eff_wordlist::large::random_word();
或直接使用列表
let (first_roll, first_word) = eff_wordlist::large::LIST[0];
assert_eq!(11111, first_roll);
assert_eq!("abacus", first_word);
依赖项
~315KB