MeiliSearch/index-scheduler/Cargo.toml

31 lines
1019 B
TOML
Raw Normal View History

[package]
name = "index-scheduler"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.64"
bincode = "1.3.3"
2022-09-07 20:37:15 +02:00
csv = "1.1.6"
file-store = { path = "../file-store" }
log = "0.4.14"
milli = { git = "https://github.com/meilisearch/milli.git", tag = "v0.33.0" }
index = { path = "../index" }
meilisearch-types = { path = "../meilisearch-types" }
document-formats = { path = "../document-formats" }
roaring = "0.9.0"
serde = { version = "1.0.136", features = ["derive"] }
2022-09-07 20:30:33 +02:00
tempfile = "3.3.0"
thiserror = "1.0.30"
time = { version = "0.3.7", features = ["serde-well-known", "formatting", "parsing", "macros"] }
uuid = { version = "1.1.2", features = ["serde", "v4"] }
synchronoise = "1.0.1"
derive_builder = "0.11.2"
2022-09-07 20:30:33 +02:00
[dev-dependencies]
nelson = { git = "https://github.com/meilisearch/nelson.git", rev = "675f13885548fb415ead8fbb447e9e6d9314000a"}
2022-09-21 13:29:38 +02:00
insta = { version = "1.19.1", features = ["json"] }
2022-09-15 12:23:41 +02:00
big_s = "1.0.2"