7 个版本
0.3.1 | 2024 年 3 月 10 日 |
---|---|
0.3.0 | 2024 年 3 月 6 日 |
0.2.0 | 2024 年 3 月 5 日 |
0.1.3 | 2024 年 3 月 5 日 |
0.1.1 | 2023 年 2 月 5 日 |
#8 in #fzf
407 每月下载量
在 2 crates 中使用
5KB
83 行
rust_fzf
Rust 库,允许使用 fzf
CLI 工具选择项。
安装
cargo add rust_fzf
用法
let selected: Result<Vec<String>, String> = select(
vec!["hello".to_string(), "rust_fzf!".to_string()],
Vec::new(),
);