2025-03-28 22:43:14 +05:30
|
|
|
[package]
|
|
|
|
|
name = "wrkflw"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2025-03-29 12:47:20 +05:30
|
|
|
description = "A GitHub Actions workflow validator and executor"
|
|
|
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
|
|
|
license = "MIT"
|
2025-03-28 22:43:14 +05:30
|
|
|
|
|
|
|
|
[dependencies]
|
2025-03-29 12:47:20 +05:30
|
|
|
clap = { version = "4.3", features = ["derive"] }
|
2025-03-28 22:43:14 +05:30
|
|
|
colored = "2.0"
|
2025-03-29 12:47:20 +05:30
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_yaml = "0.9"
|
|
|
|
|
tokio = { version = "1.28", features = ["full"] }
|
|
|
|
|
async-trait = "0.1"
|
|
|
|
|
bollard = "0.14"
|
|
|
|
|
futures-util = "0.3"
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
chrono = "0.4"
|
|
|
|
|
uuid = { version = "1.3", features = ["v4"] }
|
|
|
|
|
tempfile = "3.6"
|
|
|
|
|
tar = "0.4"
|
|
|
|
|
dirs = "5.0"
|
|
|
|
|
thiserror = "1.0"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
which = "4.4"
|