-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (36 loc) · 984 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
35
36
37
38
39
[package]
name = "apix"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.52"
atty = "0.2.14"
bat = "0.18.3"
clap = { version = "3.0.7", features=["regex", "cargo"] }
clap_complete = "3.0.3"
cmd_lib = "1.3.0"
chrono = "0.4.19"
comfy-table = "5.0.0"
dialoguer = "0.9.0"
dirs = "4.0.0"
futures = "0.3.19"
indexmap = { version = "1.8.0", features=["serde"]}
indicatif = "0.16.2"
jsonschema = "0.13.3"
once_cell = "1.9.0"
regex = "1.5.4"
reqwest = { version="0.11.9", features = ["gzip","json","socks","stream"] }
serde = "1.0.133"
serde_json = { version = "1.0.74", features=["preserve_order"] }
serde_yaml = "0.8.23"
strum = "0.23.0"
strum_macros = "0.23.1"
term_size = "0.3.2"
tokio = { version = "1.15.0", features = ["full"] }
tokio-util = { version = "0.6.9", features = ["full"] }
tera = "1.15.0"
url = "2.2.2"
whoami = "1.2.1"
[dev-dependencies]
test-case = "1.2.1"