remove ID from requests, bump deps

This commit is contained in:
Joey Hines 2025-09-30 20:38:20 -06:00
parent 18feb43c81
commit 03c70cd929
Signed by: joeyahines
GPG Key ID: 38BA6F25C94C9382
4 changed files with 321 additions and 369 deletions

671
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
[package]
name = "raas_types"
version = "0.1.0"
edition = "2021"
version = "1.0.0"
edition = "2024"
description = "Protobuf definitions for RaaS"
authors = ["Joey Hines joey@ahines.net"]
@ -10,10 +10,11 @@ authors = ["Joey Hines joey@ahines.net"]
async = ["dep:tokio"]
[dependencies]
bytes = "1.6.0"
tonic = "0.12.3"
prost = "0.13.5"
tokio = {version = "1.38.0", features = ["io-util", "test-util"], optional = true}
bytes = "1.10.1"
tonic = "0.14.2"
prost = "0.14.1"
tokio = {version = "1.47.1", features = ["io-util", "test-util"], optional = true}
tonic-prost = "0.14.2"
[build-dependencies]
tonic-build = "0.12.3"
tonic-prost-build = "0.14.2"

View File

@ -1,7 +1,8 @@
use std::io::Result;
fn main() -> Result<()> {
tonic_build::configure().compile_protos(
tonic_prost_build::configure()
.compile_protos(
&[
"src/ping.proto",
"src/register.proto",

View File

@ -5,7 +5,6 @@ import "roll.proto";
package raas.cmd;
message Command {
uint32 id = 1;
Request request = 2;
}