# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "fuse-rust" version = "0.4.0" authors = ["Blaine "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Fuse is a super lightweight library which provides a simple way to do fuzzy searching. Fuse-Rust is a port of Fuse-Swift, written purely in rust. """ homepage = "https://github.com/Blakeinstein/fuse-rust" documentation = "https://docs.rs/fuse-rust" readme = "README.md" keywords = [ "weighted-search", "search", "bitap", "fuzzy-search", "fuzzy-matching", ] categories = [ "algorithms", "text-processing", "gui", ] license = "MIT" repository = "https://github.com/Blakeinstein/fuse-rust" [lib] name = "fuse_rust" path = "src/lib.rs" [[example]] name = "chunk-search" path = "examples/chunk-search.rs" required-features = ["async"] [[example]] name = "chunk-search-rayon" path = "examples/chunk-search-rayon.rs" required-features = ["rayon"] [[example]] name = "fuseable-search" path = "examples/fuseable-search.rs" [[example]] name = "iterable-search" path = "examples/iterable-search.rs" [[example]] name = "simple-search" path = "examples/simple-search.rs" [dependencies.crossbeam-utils] version = "0.8" optional = true [dependencies.rayon] version = "1" optional = true [features] async = ["crossbeam-utils"] default = ["rayon"] rayon = ["dep:rayon"]