mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 04:28:55 +01:00
62 lines
1.3 KiB
TOML
62 lines
1.3 KiB
TOML
[package]
|
|
edition = "2018"
|
|
name = "meilidb"
|
|
version = "0.2.0"
|
|
authors = ["Kerollmops <renault.cle@gmail.com>"]
|
|
|
|
[dependencies]
|
|
bincode = "1.0"
|
|
byteorder = "1.2"
|
|
crossbeam = "0.6"
|
|
elapsed = "0.1"
|
|
fst = "0.3"
|
|
hashbrown = { version = "0.1", features = ["serde"] }
|
|
lazy_static = "1.1"
|
|
levenshtein_automata = { version = "0.1", features = ["fst_automaton"] }
|
|
linked-hash-map = { version = "0.5", features = ["serde_impl"] }
|
|
log = "0.4"
|
|
sdset = "0.3"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
unidecode = "0.3"
|
|
|
|
[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 = "306e201"
|
|
|
|
[dependencies.group-by]
|
|
git = "https://github.com/Kerollmops/group-by.git"
|
|
rev = "5a113fe"
|
|
|
|
[features]
|
|
default = ["simd"]
|
|
i128 = ["bincode/i128", "byteorder/i128"]
|
|
portable = ["rocksdb/portable"]
|
|
simd = ["rocksdb/sse"]
|
|
nightly = ["hashbrown/nightly", "group-by/nightly"]
|
|
|
|
[dev-dependencies]
|
|
csv = "1.0"
|
|
env_logger = "0.6"
|
|
jemallocator = "0.1"
|
|
quickcheck = "0.8"
|
|
rand = "0.6"
|
|
rand_xorshift = "0.1"
|
|
structopt = "0.2"
|
|
tempfile = "3.0"
|
|
termcolor = "1.0"
|
|
warp = "0.1"
|
|
|
|
[dev-dependencies.chashmap]
|
|
git = "https://gitlab.redox-os.org/redox-os/tfs.git"
|
|
rev = "b3e7cae1"
|
|
|
|
[profile.release]
|
|
debug = true
|