mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20: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.
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "common"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
miette = { version = "7", features = ["fancy"] }
|
|
thiserror = "2"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
|
|
opentelemetry = { version = "0.31", features = ["trace"] }
|
|
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
|
|
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic"] }
|
|
tracing-opentelemetry = "0.32"
|
|
tracing-appender = "0.2"
|
|
atty = "0.2"
|
|
kdl = "6"
|
|
# gRPC/protobuf runtime for Runner API
|
|
tonic = { version = "0.14", features = ["transport"] }
|
|
prost = "0.14"
|
|
# messaging + serialization
|
|
lapin = { version = "3", default-features = false, features = ["rustls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["serde", "v4"] }
|
|
time = { version = "0.3", features = ["serde", "macros"] }
|
|
futures-util = "0.3"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
|
|
tonic-prost = "0.14.2"
|
|
|
|
[build-dependencies]
|
|
tonic-prost-build = { version = "0.14", features = ["transport"] }
|