raas-types/Cargo.toml

19 lines
476 B
TOML
Raw Normal View History

2024-05-26 18:57:29 +00:00
[package]
name = "raas_types"
2024-06-22 21:20:44 +00:00
version = "0.0.9"
2024-05-26 18:57:29 +00:00
edition = "2021"
2024-05-27 02:44:21 +00:00
description = "Protobuf definitions for RaaS"
authors = ["Joey Hines joey@ahines.net"]
2024-05-26 18:57:29 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
async = ["dep:tokio"]
2024-05-26 18:57:29 +00:00
[dependencies]
bytes = "1.6.0"
2024-06-19 19:58:45 +00:00
tonic = "0.11.0"
2024-05-26 18:57:29 +00:00
prost = "0.12.6"
tokio = {version = "1.38.0", features = ["io-util", "test-util"], optional = true}
2024-05-26 18:57:29 +00:00
[build-dependencies]
2024-06-19 19:58:45 +00:00
tonic-build = "0.11.0"