-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (33 loc) · 827 Bytes
/
Cargo.toml
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
[package]
name = "canvas-cli"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.79"
chrono = { version = "0.4.31", features = ["serde"] }
clap = { version = "4.4.16", features = ["derive"] }
clap_complete = "4.4.6"
clap_complete_command = { version = "0.5.1", features = ["nushell"] }
colored = "2.1.0"
confy = "0.6.0"
csscolorparser = "0.6.2"
env_logger = "0.10.1"
futures = "0.3.30"
fuzzy-matcher = "0.3.7"
human_bytes = "0.4.3"
indicatif = "0.17.7"
inquire = "0.6.2"
log = "0.4.20"
regex = "1.10.2"
reqwest = { version = "0.11.23", features = [
"stream",
"multipart",
"json",
"native-tls-vendored",
] }
serde = "1.0.195"
serde_derive = "1.0.195"
serde_json = "1.0.133"
tokio = { version = "1.35.1", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["codec"] }
url = "2.5.0"