[package]
edition = "2024"
rust-version = "1.87.0"
name = "pinprick"
version = "0.7.0"
build = "build.rs"
exclude = [
"/.github/",
"/site/",
"/scripts/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GitHub Actions supply chain security tool"
homepage = "https://pinprick.rs"
readme = "README.md"
keywords = [
"github-actions",
"security",
"supply-chain",
"sha",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "AGPL-3.0-only"
repository = "https://github.com/starhaven-io/pinprick"
[[bin]]
name = "pinprick"
path = "src/main.rs"
[[test]]
name = "audit"
path = "tests/audit.rs"
[[test]]
name = "clean"
path = "tests/clean.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "completions"
path = "tests/completions.rs"
[[test]]
name = "pin"
path = "tests/pin.rs"
[[test]]
name = "update"
path = "tests/update.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"color",
]
[dependencies.clap_complete]
version = "4"
[dependencies.colored]
version = "3"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = ["json"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_norway]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "1"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[build-dependencies.serde]
version = "1"
features = ["derive"]
[build-dependencies.serde_json]
version = "1"
[profile.release]
lto = true
strip = true