-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (35 loc) · 1.14 KB
/
Cargo.toml
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 = "indicium"
version = "0.6.3"
authors = ["Dylan Bowker <[email protected]>"]
edition = "2021"
categories = [ "database-implementations" ]
description = "Simple in-memory search for collections and key-value stores."
documentation = "https://docs.rs/indicium"
keywords = [ "search", "autocomplete", "struct", "vec", "hashmap" ]
license = "MIT OR Apache-2.0"
publish = true
readme = "README.md"
repository = "https://github.com/leontoeides/indicium"
rust-version = "1.73.0"
[features]
default = [ "simple" ]
simple = [ "strsim", "ahash" ]
select2 = [ "simple", "dep:serde" ]
fuzzy = [ "dep:strsim" ]
strsim = [ "dep:strsim" ]
eddie = [ "dep:eddie" ]
ahash = [ "dep:ahash" ]
gxhash = [ "dep:gxhash" ]
[dependencies]
ahash = { version = "0.8", optional = true }
eddie = { version = "0.4", optional = true }
gxhash = { version = "3.4", optional = true }
kstring = "2.0"
serde = { version = "1.0", features = [ "derive" ], optional = true }
strsim = { version = "0.11", optional = true }
tracing = "0.1"
[dev-dependencies]
pretty_assertions = "1"
[badges]
maintenance = { status = "passively-maintained" }