-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 loc) · 1.13 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
43
[package]
name = "fuzzy_rocks"
version = "0.4.0"
authors = ["Luke Peterson <luke@infoplatter.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A persistent datastore backed by RocksDB with fuzzy key lookup using an arbitrary distance function accelerated by the SymSpell algorithm"
repository = "https://github.com/luketpeterson/fuzzy_rocks/"
readme = "README.md"
keywords = ["rocksdb", "fuzzy", "search", "fuzzy-search", "symspell"]
[dependencies]
num-traits = "0.2.14"
derive_more = "0.99.14"
rocksdb = ">=0.18.0, <=0.21.0"
semver = "1.0.23"
serde = { version = "1.0.126", features = ["derive"] }
rmp-serde = { version = "1.1.2", optional = true }
rmp = { version = "0.8.12", optional = true }
bincode = { version = "1.3.3", optional = true }
bitcode = { version = "=0.6.0", features = ["serde"], optional = true }
[dev-dependencies]
rand = "0.8.0"
rand_pcg = "0.3.1"
csv = "1.1.6"
criterion = "0.3"
[[bench]]
name = "lookups"
harness = false
[[bench]]
name = "inserts"
harness = false
[features]
default = ["bitcode"]
perf_counters = []
msgpack = ["dep:rmp-serde", "dep:rmp"]
bincode = ["dep:bincode"]
bitcode = ["dep:bitcode"]