mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 21:30:41 +00:00
- Introduce a new `webhook` crate to centralize signature validation for GitHub, Hookdeck, and Forgejo webhooks. - Enable `github-integration` to perform unified webhook signature verification using the `webhook` crate. - Refactor `github-integration`: replace legacy HMAC verification with the reusable `webhook` structure. - Extend Podman configuration for Hookdeck webhook signature handling and improve documentation. - Clean up unused dependencies by migrating to the new implementation. Signed-off-by: Till Wegmueller <toasterson@gmail.com>
15 lines
239 B
TOML
15 lines
239 B
TOML
[package]
|
|
name = "webhook"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
base64 = "0.22"
|
|
hex = "0.4"
|
|
hmac = "0.12"
|
|
http = "1"
|
|
miette = { version = "7", features = ["fancy"] }
|
|
serde = "1"
|
|
serde_json = "1"
|
|
sha2 = "0.10"
|
|
thiserror = "2"
|