-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (41 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
44 lines (41 loc) · 1.19 KB
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
[package]
name = "jetpack"
version = "0.4.6"
edition = "2024"
license = "GPL-3.0-or-later"
description = "A fast, modern automation platform"
homepage = "https://riff.cc/jetpack"
documentation = "https://docs.riff.cc/jetpack/"
repository = "https://github.com/riffcc/jetpack"
readme = "README.md"
keywords = ["automation", "devops", "deployment", "ssh"]
categories = ["command-line-utilities", "development-tools"]
include = ["src/", "version.sh", "LICENSE", "README.md"]
[lib]
name = "jetpack"
path = "src/lib.rs"
[dependencies]
once_cell = "1.18.0"
russh = "0.57.0"
russh-sftp = "2.1.1"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9.25"
serde_json = { version = "1.0.105", features = ["preserve_order"] }
termimad = "0.20"
inline_colorization = "0.1.5"
rayon = "1.7.0"
handlebars = "4.3.7"
sha2 = "0.10.8"
guid-create = "0.3.1"
expanduser = "1.2.2"
indexmap = { version = "2.1.0", features = ["serde"] }
chrono = "0.4.31"
shlex = "1.2.0"
reqwest = { version = "0.12.22", default-features = false, features = ["json", "rustls-tls"] }
semver = "1.0"
tokio = { version = "1.47.0", features = ["full"] }
urlencoding = "2.1"
regex = "1.10"
[dev-dependencies]
tempfile = "3.8.0"