-
Notifications
You must be signed in to change notification settings - Fork 2
Upgrade dependencies, fix a few lints #22
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
base: main
Are you sure you want to change the base?
Conversation
| std::env::set_var("PROTOC", protoc_bin_vendored::protoc_bin_path().unwrap()); | ||
| tonic_build::compile_protos("zerobus_service.proto") |
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.
I initially added this so that people using the SDK wouldn't have to have protoc installed to be able to run the SDK. Does this remove that?
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.
Hmmm, it actually forces you to have your own installed, I think that makes sense I'll revert this.
| async-trait = "0.1" | ||
| prost = "0.13.3" | ||
| prost-types = "0.13.3" | ||
| prost = "0.14.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.
@gotocoding-DB expressed a concern regarding this how we use an older version in Universe and thus this would make it harder to import the SDK into Universe. We'd need to bump up the Universe version which is a bit of a hassle.
elenagaljak-db
left a comment
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.
Can you please update the NEXT_CHANGELOG.md file as well?
Also, I see that you didn't sign your commits which will be a blocker for merge. You should retroactively sign your commits with gpg.
What changes are proposed in this pull request?
Upgrade dependencies, namely tonic, prost and tonic-reflect to their latest versions.
How is this tested?
Tests build and pass