mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
42 lines
1.0 KiB
TOML
42 lines
1.0 KiB
TOML
[package]
|
|
name = "meilidb-data"
|
|
version = "0.1.0"
|
|
authors = ["Kerollmops <renault.cle@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
arc-swap = "0.4.2"
|
|
bincode = "1.1.4"
|
|
crossbeam-channel = "0.3.9"
|
|
deunicode = "1.0.0"
|
|
hashbrown = { version = "0.6.0", features = ["serde"] }
|
|
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" }
|
|
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"
|
|
|
|
[dependencies.rmp-serde]
|
|
git = "https://github.com/3Hren/msgpack-rust.git"
|
|
rev = "40b3d48"
|
|
|
|
[dependencies.rmpv]
|
|
git = "https://github.com/3Hren/msgpack-rust.git"
|
|
rev = "40b3d48"
|
|
features = ["with-serde"]
|
|
|
|
[dependencies.fst]
|
|
git = "https://github.com/Kerollmops/fst.git"
|
|
branch = "arc-byte-slice"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.1.0"
|
|
maplit = "1.0.2"
|
|
big_s = "1.0.2"
|