-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (71 loc) · 2.15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "cargo-fslabscli"
version = "2.4.4"
edition = "2021"
authors = ["FSLABS DevOps Gods"]
repository = "https://github.com/ForesightMiningSoftwareCorporation/fslabsci"
description = "Command line interface for helping FSLABS ci"
license = "MIT OR Apache-2.0"
publish = ["foresight-mining-software-corporation"]
#[patch.crates-io]
#octocrab = { path = "../octocrab" }
[dependencies]
base64 = "0.21"
clap = { version = "4.5.0", features = ["derive", "env"] }
anyhow = { version = "1.0.79", features = [] }
tokio = { version = "1.36.0", features = ["full"] }
log = "0.4"
log4rs = "1.3"
exitcode = "1.1"
serde = { version = "1.0", features = ["derive", "std"] }
serde_json = "1.0"
cargo_metadata = "0.18.1"
oci-distribution = { version = "0.10.0", default-features = false, features = ["rustls-tls"] }
jsonwebtoken = "9.3.0"
hyper = { version = "1", default-features = false }
hyper-rustls = { version = "0.26" }
hyper-util = { version = "0.1", default-features = false, features = ["tokio", "client-legacy"] }
rustls = { version = "0.22", default-features = false, features = ["tls12"] }
http-body-util = "0.1"
http = "1.0.0"
console = "0.15.8"
strum = "0.26"
strum_macros = "0.26"
indicatif = "0.17.8"
git2 = { version = "0.18.2", default-features = false } # No need to clone so can remove https and ssh support
serde_yaml = "0.9.31"
void = "1.0.2"
indexmap = { version = "2.2", features = ["serde"] }
serde_with = { version = "3.6", features = ["macros"] }
quick-xml = {version = "0.35.0", features = ["serialize"] }
url = "2.5.0"
itertools = "0.12"
num = "0.4.1"
octocrab = "0.39"
ignore = "0.4.22"
object_store = { version = "0.9.1", features = ["azure"]}
toml = "0.8.12"
convert_case = "0.6.0"
chrono = "0.4"
rust-toolchain-file = "0.1"
futures-util = "0.3.30"
humanize-duration = { version = "0.0.6", features = ["chrono"]}
tempfile = "3.10.1"
zip = "2.1.5"
bytes = "1.6.1"
[dev-dependencies]
assert_fs = "1.1.1"
testcontainers = "0.15"
wiremock = "0.6"
indoc = "2.0"
serial_test = "3.0.0"
[package.metadata.fslabs.publish.binary]
publish = true
sign = false
name = "FSLABS Cli tool"
targets = ["x86_64-unknown-linux-gnu"]
[features]
nightly = []
alpha = []
beta = []
prod = []