-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Bump protobuf to 3.7.1 and regenerate code from .proto files #37
Conversation
@@ -27,7 +27,7 @@ regex = "1.3" | |||
# Byte collections | |||
bytes = "1" | |||
# Protobuf runtime | |||
protobuf = "3.4" | |||
protobuf = "=3.7.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to pin protobuf
and protobuf-codegen
to a specific version (=
) or not?
In case we don't want to pin it, we should uncomment the code in build.rs
that is responsible for regenerating code from .proto files.
@@ -53,4 +53,4 @@ toml = "0.8" | |||
|
|||
[build-dependencies] | |||
# Protobuf code generation | |||
protobuf-codegen = "3.4" | |||
protobuf-codegen = "=3.7.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we want to pin protobuf
and protobuf-codegen
to a specific version (=
) or not?
In case we don't want to pin it, we should uncomment the code in build.rs
that is responsible for regenerating code from .proto files.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you!
This PR bumps
protobuf
andprotobuf-codegen
to the latest version (3.7.1) and regenerates code from .proto files.