'which version grpc will be compatible with protobuf 3.18.0/3.18.1
our client provides some generated protobuf API which has content like this:
#if PROTOBUF_VERSION < 3018000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3018001 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
It seems like I need to install a grpc which is compatible with protobuf 3.18.0 or 3.18.1,and I found a compatibility table in this page:
https://github.com/grpc/grpc/blob/master/src/php/README.md
but it stoped in grpc v.1.3.0,and the .gitmodule file of grpc didn't tell much also,so would you please tell me:
which version grpc will be compatible with protobuf 3.18.0/3.18.1?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
