ZIm/crates/fuzzy/src/fuzzy.rs
2025-03-31 20:55:27 +02:00

10 lines
265 B
Rust

mod char_bag;
mod matcher;
mod paths;
mod strings;
pub use char_bag::CharBag;
pub use paths::{
PathMatch, PathMatchCandidate, PathMatchCandidateSet, match_fixed_path_set, match_path_sets,
};
pub use strings::{StringMatch, StringMatchCandidate, match_strings};