raas-types/Cargo.toml

19 lines
476 B
TOML
Raw Permalink Normal View History

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