runner_rs/Cargo.toml

26 lines
612 B
TOML
Raw Normal View History

2024-05-25 09:04:29 +00:00
workspace = { members = ["gump"] }
2024-05-24 13:43:33 +00:00
[package]
name = "actions-proto-rs"
2024-05-25 09:24:48 +00:00
version = "0.1.3"
2024-05-24 13:43:33 +00:00
edition = "2021"
2024-05-25 09:04:29 +00:00
repository = "https://ok.software/ok/runner_rs.git"
2024-05-24 13:54:11 +00:00
description = "Protobuf definitions for Forgejo actions"
license = "MIT"
2024-05-24 13:43:33 +00:00
build = "build.rs"
[dependencies]
2024-06-05 19:06:52 +00:00
axum = "0.7.5"
axum-connect = "0.3.2"
okstd = { version = "0.1.9", registry = "oksoftware", features = ["macros"] }
2024-05-24 13:43:33 +00:00
prost = "0.12"
prost-types = "0.12"
2024-06-05 19:06:52 +00:00
tokio = { version = "1.38.0", features = ["full"] }
2024-05-25 09:04:29 +00:00
tonic = "0.11.0"
2024-05-24 13:43:33 +00:00
[build-dependencies]
prost-build = "0.12.6"
2024-05-25 09:04:29 +00:00
tonic-build = "0.11"
2024-06-05 19:06:52 +00:00
hyper = { version = "0.14" }
axum-connect-build = "0.3.2"