-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 913 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
[package]
authors = ["andylokandy <andylokandy@hotmail.com>"]
edition = "2018"
name = "simsearch"
version = "0.3.0"
license = "MIT/Apache-2.0"
description = "A simple and lightweight fuzzy search engine that works in memory, searching for similar strings (a pun here)."
documentation = "https://docs.rs/simsearch"
repository = "https://github.com/andylokandy/simsearch-rs"
homepage = "https://github.com/andylokandy/simsearch-rs"
readme = "README.md"
exclude = ["books.json"]
keywords = ["fuzzy", "search", "lightweight", "pattern", "strsim"]
categories = ["algorithms", "text-processing"]
[dependencies]
strsim = "0.11"
triple_accel = "0.4"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
default-features = false
[dev-dependencies]
inquire = "0.7"
serde_json = "1"
quickcheck = "1"
quickcheck_macros = "1"
itertools = "0.14"
divan = "0.1"
[[bench]]
name = "lib"
harness = false