Replies: 1 comment
-
Can you post the error you were getting when you made that config change? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In the generated rust code from the proto file, I have a struct which has a field:
generated from a protobuff field:
google.protobuf.Value data = 3;
I can't seem to find a way to pack some var into
data
which is typeprost_types::Value
.There is another crate, prost-wkt, which provide pack/unpack funcs for
Any
. But it won't generate grpc server from proto. Is there a way to telltonic_build
to useprost-wkt-types
instead ofprost-types
? I tried to do:But it the generated file didn't compile.
Beta Was this translation helpful? Give feedback.
All reactions