From d6f891afeb90047f8c0072bada48e439c93fb8f8 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Sun, 14 Jul 2024 08:42:20 -0700 Subject: [PATCH] add serde traits to generated code --- scripts/rust-gen.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/rust-gen.sh b/scripts/rust-gen.sh index 3531f25..89637b4 100755 --- a/scripts/rust-gen.sh +++ b/scripts/rust-gen.sh @@ -8,4 +8,6 @@ do --prost_out=./rust-grpc/$name \ --tonic_out=./rust-grpc/$name \ $f + #I couldn't figure out how to configure protoc to do this + sed -i "s/::prost::Message/::prost::Message, serde::Serialize, serde::Deserialize/g" "./rust-grpc/$name.rs" done \ No newline at end of file