-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
61 lines (57 loc) · 1.64 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
authors = ["Anton Malinskiy <am@marathonlabs.io>"]
categories = ["command-line-utilities"]
description = "Command-line client for Marathon Cloud"
homepage = "https://github.com/MarathonLabs/marathon-cloud-cli"
license = "MIT"
name = "marathon-cloud"
repository = "https://github.com/MarathonLabs/marathon-cloud-cli"
version = "0.0.1"
edition = "2021"
rust-version = "1.74"
default-run = "marathon-cloud"
[[bin]]
name = "marathon-cloud-mangen"
path = "src/bin/mangen.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.18", features = ["derive", "env"] }
clap_complete = "4"
log = "0.4.20"
serde = { version = "1.0.209", features = ["derive"] }
serde-enum-str = "0.4.0"
serde_json = "1.0.127"
serde_yaml = "0.9.33"
serde_with = "3.6.0"
simple_logger = "4.3.3"
shellexpand = "3.1.0"
tempfile = "3.9.0"
# Reqwest pulls in dependency on openssl which we replace with rustls, hence disabling default features
reqwest = { version = "0.12.9", default-features = false, features = [
"json",
"multipart",
"stream",
"rustls-tls",
] }
time = { version = "0.3.36", features = ["serde-well-known"] }
tokio = { version = "1.40.0", features = ["full"] }
tokio-util = "0.7.11"
futures = "0.3"
async-trait = "0.1"
num_cpus = "1"
clap-verbosity-flag = "2.1"
indicatif = "0.17"
console = "0.15"
thiserror = "1.0"
url = "2.5.4"
async-stream = "0.3"
clap_mangen = "0.2.18"
h2 = "0.3.26"
async_zip = { version = "0.0.17", features = ["tokio", "tokio-fs", "deflate"] }
walkdir = "2.5.0"
globset = "0.4"
regex = "1.10.5"
[dev-dependencies]
rstest = "0.18.2"
tempfile = "3.10.1"