18 lines
459 B
TOML
18 lines
459 B
TOML
[package]
|
|
name = "raas_types"
|
|
version = "0.0.3"
|
|
edition = "2021"
|
|
description = "Protobuf definitions for RaaS"
|
|
authors = ["Joey Hines joey@ahines.net"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[features]
|
|
async = ["dep:tokio"]
|
|
|
|
[dependencies]
|
|
bytes = "1.6.0"
|
|
prost = "0.12.6"
|
|
tokio = {version = "1.38.0", features = ["io-util", "test-util"], optional = true}
|
|
|
|
[build-dependencies]
|
|
prost-build = "0.12.6" |