-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 867 Bytes
/
Cargo.toml
File metadata and controls
37 lines (34 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "meilisearch-cli"
version = "0.4.0"
edition = "2024"
description = "The official Meilisearch CLI"
license = "MIT"
[[bin]]
name = "msc"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
colored_json = "5"
crossterm = "0.29"
csv = "1"
dialoguer = "0.12"
dirs = "6"
flate2 = "1"
futures-util = "0.3"
indicatif = "0.18"
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
reqwest = { version = "0.13", features = ["json", "stream", "multipart"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
tar = "0.4"
tempfile = "3"
tokio = { version = "1", features = ["full"] }
toml = "1.1"
uuid = { version = "1", features = ["v4"] }
which = "8"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"