tuiscope/lib.rs
1//! Inspired by [telescope](https://github.com/nvim-telescope/telescope.nvim).
2//!
3//! A TUI fuzzy finder for rust apps. For example usage, see [examples](https://github.com/olidacombe/tuiscope/tree/main/examples).
4#![deny(clippy::pedantic)]
5#![allow(clippy::must_use_candidate, clippy::return_self_not_must_use)]
6
7mod data;
8mod highlight;
9mod widget;
10
11pub use data::FuzzyFinder;
12pub use widget::FuzzyList;