Crates.io | rust_fzf |
lib.rs | rust_fzf |
version | 0.3.1 |
source | src |
created_at | 2023-02-05 00:47:09.89755 |
updated_at | 2024-03-10 20:35:07.812154 |
description | A library to select an item using the fzf CLI tool |
homepage | |
repository | |
max_upload_size | |
id | 776749 |
size | 4,442 |
Rust library to allow for selecting an item using the fzf
CLI tool.
cargo add rust_fzf
let selected: Result<Vec<String>, String> = select(
vec!["hello".to_string(), "rust_fzf!".to_string()],
Vec::new(),
);