2025-10-25 20:00:32 +02:00
|
|
|
[package]
|
|
|
|
|
name = "forge-integration"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
common = { path = "../common" }
|
|
|
|
|
clap = { version = "4", features = ["derive", "env"] }
|
|
|
|
|
miette = { version = "7", features = ["fancy"] }
|
|
|
|
|
tracing = "0.1"
|
|
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
|
|
|
|
|
# HTTP + Webhooks
|
2025-11-01 15:24:09 +01:00
|
|
|
axum = { version = "0.8", features = ["macros"] }
|
2025-10-25 20:00:32 +02:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
# Signature verification
|
|
|
|
|
hmac = "0.12"
|
|
|
|
|
sha2 = "0.10"
|
|
|
|
|
hex = "0.4"
|