stepancheg / grpc-rust

Rust implementation of gRPC
MIT License
1.37k stars 124 forks source link

2.0 protobuf incompatible with GRPC generation #127

Closed przygienda closed 6 years ago

przygienda commented 6 years ago

42 | req_marshaller: Box::new(::grpc::protobuf::MarshallerProtobuf), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the trait protobuf::core::Message is not implemented for ...service::LoginRequest

basically looks like the message trait been moved around & code broke ...

przygienda commented 6 years ago

problem exists if trying to compile with protobuf="~2.0"

code genreated with 2.0 compiles fine with protobuf="~1.6"

nightly 2-3 weeks ago ...

stepancheg commented 6 years ago

I plan to switch grpc to protobuf ~2.0 soon.

stepancheg commented 6 years ago

Done, published grpc 0.5.0

przygienda commented 6 years ago

thanks ;-)