-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (45 loc) · 1.25 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
[package]
name = "skate"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
shadow-rs = "0.35.2"
[dependencies]
anyhow = "1.0.92"
async-ssh2-tokio = { version = "0.8.12", features = ["openssl"] }
async-trait = "0.1.83"
clap = { version = "4.5.20", features = ["derive", "env", "string"] }
futures = "0.3.31"
k8s-openapi = { version = "0.23.0", features = ["latest"] }
semver = "1.0.23"
serde = { version = "1.0.214", features = ["derive"] }
serde_yaml = "0.9.27"
strum = "0.26.3"
strum_macros = "0.26.4"
thiserror = "1.0.66"
tokio = { version = "1.41.0", features = ["full"] }
itertools = "0.13.0"
shellexpand = "3.1.0"
serde_json = "1.0.132"
deunicode = "1.6.0"
sysinfo = "0.30.13"
chrono = "0.4.38"
base64 = "0.22.1"
colored = "2.0.4"
fs2 = "0.4.3"
log = "0.4.20"
handlebars = "6.2.0"
cron = "0.12.1"
russh = "=0.45.0"
syslog = "7.0.0"
tabled = "0.16.0"
dialoguer = "0.11.0"
reqwest = { version = "0.12.9", features = ["json"] }
shadow-rs = "0.35.2"
openssl = { version = "0.10.68", features = ["vendored"] }
validator = { version = "0.19.0", features= ["derive"] }
regex = "1.11.1"
once_cell = "1.19.0"
[target.'cfg(target_os = "linux")'.dependencies]