MeiliSearch/Cargo.toml

48 lines
996 B
TOML
Raw Normal View History

[package]
edition = "2018"
name = "meilidb"
version = "0.1.0"
authors = ["Kerollmops <renault.cle@gmail.com>"]
[dependencies]
2018-11-21 13:56:14 +01:00
bincode = "1.0"
byteorder = "1.2"
crossbeam = "0.6"
fst = "0.3"
hashbrown = "0.1"
lazy_static = "1.1"
levenshtein_automata = { version = "0.1", features = ["fst_automaton"] }
2018-11-21 13:56:14 +01:00
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
sdset = "0.3"
2018-11-21 13:56:14 +01:00
serde = "1.0"
serde_derive = "1.0"
unidecode = "0.3"
2018-12-28 19:24:50 +01:00
[dependencies.toml]
git = "https://github.com/Kerollmops/toml-rs.git"
features = ["preserve_order"]
rev = "0372ba6"
[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"
2018-07-06 21:50:19 +02:00
[features]
default = ["simd"]
i128 = ["bincode/i128", "byteorder/i128"]
simd = ["rocksdb/sse"]
2018-12-10 19:59:24 +01:00
portable = ["rocksdb/portable"]
nightly = []
[dev-dependencies]
csv = "1.0"
elapsed = "0.1"
quickcheck = "0.7"
structopt = "0.2"
2018-11-20 11:37:19 +01:00
tempfile = "3.0"
termcolor = "1.0"