forked from meilisearch/meilisearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (34 loc) · 824 Bytes
/
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
[package]
edition = "2018"
name = "meilidb"
version = "0.1.0"
authors = ["Kerollmops <[email protected]>"]
[dependencies]
bincode = "1.0"
byteorder = "1.2"
fst = "0.3"
hashbrown = "0.1"
lazy_static = "1.1"
levenshtein_automata = { version = "0.1", features = ["fst_automaton"] }
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
sdset = "0.3"
serde = "1.0"
serde_derive = "1.0"
unidecode = "0.3"
[dependencies.rocksdb]
git = "https://github.com/pingcap/rust-rocksdb.git"
rev = "c2eb140"
[dependencies.group-by]
git = "https://github.com/Kerollmops/group-by.git"
rev = "cab857b"
[features]
default = ["simd"]
i128 = ["bincode/i128", "byteorder/i128"]
simd = ["rocksdb/sse"]
portable = ["rocksdb/portable"]
nightly = []
[dev-dependencies]
csv = "1.0"
elapsed = "0.1"
structopt = "0.2"
tempfile = "3.0"