MeiliSearch/meilidb-data/Cargo.toml

42 lines
1.0 KiB
TOML
Raw Normal View History

[package]
name = "meilidb-data"
version = "0.1.0"
authors = ["Kerollmops <renault.cle@gmail.com>"]
edition = "2018"
[dependencies]
2019-08-19 18:09:02 +02:00
arc-swap = "0.4.2"
bincode = "1.1.4"
crossbeam-channel = "0.3.9"
2019-04-19 18:27:57 +02:00
deunicode = "1.0.0"
hashbrown = { version = "0.6.0", features = ["serde"] }
2019-08-19 18:09:02 +02:00
log = "0.4.6"
meilidb-core = { path = "../meilidb-core", version = "0.1.0" }
meilidb-schema = { path = "../meilidb-schema", version = "0.1.0" }
meilidb-tokenizer = { path = "../meilidb-tokenizer", version = "0.1.0" }
2019-03-29 17:38:29 +01:00
ordered-float = { version = "1.0.2", features = ["serde"] }
rocksdb = "0.12.3"
sdset = "0.3.2"
serde = { version = "1.0.99", features = ["derive"] }
serde_json = "1.0.40"
siphasher = "0.3.0"
zerocopy = "0.2.8"
2019-04-18 13:58:35 +02:00
[dependencies.rmp-serde]
git = "https://github.com/3Hren/msgpack-rust.git"
rev = "40b3d48"
2019-04-19 18:27:57 +02:00
[dependencies.rmpv]
git = "https://github.com/3Hren/msgpack-rust.git"
rev = "40b3d48"
features = ["with-serde"]
2019-04-19 18:27:57 +02:00
[dependencies.fst]
git = "https://github.com/Kerollmops/fst.git"
branch = "arc-byte-slice"
[dev-dependencies]
tempfile = "3.1.0"
maplit = "1.0.2"
2019-09-18 11:42:30 +02:00
big_s = "1.0.2"