-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 998 Bytes
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 998 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "fuse-rust"
version = "0.4.0"
authors = ["Blaine <rishi1998@gmail.com>"]
edition = "2021"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/fuse-rust"
repository = "https://github.com/Blakeinstein/fuse-rust"
homepage = "https://github.com/Blakeinstein/fuse-rust"
categories = ["algorithms", "text-processing", "gui"]
keywords = [
"weighted-search",
"search",
"bitap",
"fuzzy-search",
"fuzzy-matching",
]
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.
"""
[dependencies]
crossbeam-utils = { version = "0.8", optional = true }
rayon = { version = "1", optional = true }
[features]
default = ["rayon"]
async = ["crossbeam-utils"]
rayon = ["dep:rayon"]
[workspace]
members = ["examples/search-bar"]
[[example]]
name = "chunk-search"
required-features = ["async"]
[[example]]
name = "chunk-search-rayon"
required-features = ["rayon"]