-
Notifications
You must be signed in to change notification settings - Fork 253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
System libraries versions (grpc) #591
Comments
Why do you want that library? |
I'm using |
If the naming convention for |
Currently TiKV's version include a patch that is not merged into upstream. tikv/grpc@38a9cd9. So use customized library may miss the functionality. I would not say the format of grpcio-sys version name is reliable. But I don't see it will change in the near future. The format is {grpcio-sys version}+{grpc version}[-patched[.1]. |
Thanks a lot! Where can I get a list of all patches that are not merged upstream, so that I can apply them? |
Currently there is only one functionality difference. You can get what's changed by |
Is there a way to retrieve the correct (and tested) versions for system libraries such as
grpc
?Currently, it can be extracted using
cargo metadata
andsed 's/^.*+//;s/-.*$//'
, as thegrpcio-sys
version includes thegrpc
version.Will this be stable or will the naming convention change?
The text was updated successfully, but these errors were encountered: