[package]
name = "github-actions-maintainer"
version = "0.6.0"
edition = "2024"
rust-version = "1.97.1"
description = "General-purpose GitHub Actions maintenance toolkit with secure workflow pinning"
license = "MIT"
repository = "https://github.com/ThreatFlux/github-actions-maintainer"
homepage = "https://github.com/ThreatFlux/github-actions-maintainer"
keywords = ["github-actions", "security", "pinning", "automation", "supply-chain"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
anyhow = "1.0.104"
clap = { version = "4.6.5", features = ["derive", "env"] }
regex = "1.13.1"
reqwest = { version = "0.13.4", default-features = false, features = ["blocking", "json", "rustls"] }
semver = "1.0.28"
serde = { version = "1.0.229", features = ["derive"] }
toml_edit = "0.25.13"
urlencoding = "2.1.3"
walkdir = "2.5.0"
[dev-dependencies]
mockito = "1.7.2"
tempfile = "3.27.0"
[features]
default = []
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true
[[bin]]
name = "github-actions-maintainer"
path = "src/main.rs"