blur_search 0.1.0

A simple fuzzy search library for Rust.
Documentation
  • Coverage
  • 42.86%
    3 out of 7 items documented0 out of 0 items with examples
  • Size
  • Source code size: 27.43 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 264.37 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 15s Average build duration of successful builds.
  • all releases: 15s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • shmulisarmy/fuzzy-search
    0 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • shmulisarmy

blur

A simple fuzzy search library for Rust.

Features

  • Fuzzy substring matching
  • Sorts results by match quality
  • Easy to use API

Usage

Add to your Cargo.toml:

[dependencies]
blur_search = "0.1.0"

Example

use blur_search::FuzzySearcher;

fn main() {
    let mut searcher = FuzzySearcher::new(
        "hello".to_string(),
        vec!["hel--lo".to_string(), "h-e-l-l-o".to_string()],
    );
    searcher.display();
}

License

MIT OR Apache-2.0