Files
wrkflw/Cargo.toml

55 lines
1.3 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = [
"crates/*"
]
resolver = "2"
[workspace.package]
version = "0.7.0"
2025-03-28 22:43:14 +05:30
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
[workspace.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"
2025-04-14 16:54:21 +05:30
serde_json = "1.0"
jsonschema = "0.17"
2025-03-29 12:47:20 +05:30
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:58:36 +05:30
crossterm = "0.26.1"
ratatui = { version = "0.23.0", features = ["crossterm"] }
2025-04-04 14:43:15 +05:30
once_cell = "1.19.0"
2025-04-14 16:54:21 +05:30
itertools = "0.11.0"
indexmap = { version = "2.0.0", features = ["serde"] }
rayon = "1.7.0"
num_cpus = "1.16.0"
2025-04-24 16:49:07 +05:30
regex = "1.10"
2025-04-14 16:54:21 +05:30
lazy_static = "1.4"
reqwest = { version = "0.11", features = ["json"] }
2025-04-21 16:42:16 +05:30
libc = "0.2"
2025-04-21 17:03:26 +05:30
nix = { version = "0.27.1", features = ["fs"] }
2025-04-25 15:32:04 +05:30
urlencoding = "2.1.3"
[profile.release]
codegen-units = 1
lto = true