remove ID from requests, bump deps
This commit is contained in:
parent
18feb43c81
commit
03c70cd929
671
Cargo.lock
generated
671
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
15
Cargo.toml
15
Cargo.toml
@ -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"
|
||||
|
||||
3
build.rs
3
build.rs
@ -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",
|
||||
|
||||
@ -5,7 +5,6 @@ import "roll.proto";
|
||||
package raas.cmd;
|
||||
|
||||
message Command {
|
||||
uint32 id = 1;
|
||||
Request request = 2;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user