mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 21:30:41 +00:00
This commit updates multiple dependencies, including: - `axum` upgraded to 0.8 for HTTP and webhook functionality. - `tonic` upgraded to 0.14 for gRPC support. - `prost` upgraded to 0.14 for protobuf processing. - Addition of `tonic-prost` and `tonic-prost-build` for updated gRPC build configurations. Relevant Cargo.toml entries and `build.rs` are adjusted to reflect these updates.
19 lines
517 B
TOML
19 lines
517 B
TOML
[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
|
|
axum = { version = "0.8", features = ["macros"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
# Signature verification
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|