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身份验证

Download history 504/week @ 2024-04-18 513/week @ 2024-04-25 500/week @ 2024-05-02 667/week @ 2024-05-09 562/week @ 2024-05-16 650/week @ 2024-05-23 673/week @ 2024-05-30 572/week @ 2024-06-06 754/week @ 2024-06-13 643/week @ 2024-06-20 700/week @ 2024-06-27 652/week @ 2024-07-04 582/week @ 2024-07-11 804/week @ 2024-07-18 730/week @ 2024-07-25 477/week @ 2024-08-01

每月2,761次下载
4 crate 中使用

AGPL-3.0

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