MeiliSearch/cli/Cargo.toml

24 lines
557 B
TOML
Raw Normal View History

[package]
name = "cli"
version = "1.0.0"
edition = "2018"
description = "A CLI to interact with a milli index"
2022-04-25 14:03:21 +02:00
publish = false
[dependencies]
2022-08-17 11:46:56 +02:00
bimap = "0.6.2"
byte-unit = { version = "4.0.14", default-features = false, features = ["std", "serde"] }
2022-10-04 11:29:39 +02:00
color-eyre = "0.6.2"
2022-08-17 11:46:56 +02:00
csv = "1.1.6"
2022-10-04 11:29:39 +02:00
eyre = "0.6.8"
indicatif = "0.17.1"
milli = { path = "../milli", default-features = false }
2022-08-17 11:46:56 +02:00
mimalloc = { version = "0.1.29", default-features = false }
2022-10-04 11:29:39 +02:00
serde = "1.0.145"
serde_json = "1.0.85"
stderrlog = "0.5.3"
2022-08-17 11:46:56 +02:00
structopt = "0.3.26"
[features]
default = ["milli/default"]