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"
|
2025-03-29 13:08:03 +05:30
|
|
|
documentation = "https://github.com/bahdotsh/wrkflw"
|
|
|
|
|
homepage = "https://github.com/bahdotsh/wrkflw"
|
|
|
|
|
repository = "https://github.com/bahdotsh/wrkflw"
|
2025-03-29 13:10:52 +05:30
|
|
|
keywords = ["workflows", "github", "local"]
|
|
|
|
|
categories = ["command-line-utilities"]
|
2025-03-29 12:47:20 +05:30
|
|
|
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"
|
2025-04-04 14:43:15 +05:30
|
|
|
crossterm = "0.25"
|
|
|
|
|
tui = "0.19"
|
|
|
|
|
once_cell = "1.19.0"
|
2025-03-31 20:58:42 +03:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
lto = true
|