-
Notifications
You must be signed in to change notification settings - Fork 225
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
Update to bytes 0.5 and amino_rs 0.5 #126
Conversation
@@ -26,6 +26,7 @@ extern crate prost_amino as prost; | |||
#[allow(unused_extern_crates)] | |||
#[macro_use] | |||
extern crate prost_amino_derive as prost_derive; | |||
extern crate bytes; |
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.
Are either of these extern crate
s still needed? I know prost
was looking directly in the sysroot
for them before which precluded renaming them any other way than through the extern crate
directive, but if everything is namespaced correctly, it seems like it should be possible to get rid of them?
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.
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.
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 assume this was tested locally, as well as running clippy on it? CircleCi doesn't run on forks :-/ |
Fixed |
Update to bytes_0.5 and amino_rs 0.5 and makes all the amino_rs tokens independent of prost tokens enabling prost and amino_rs to be combined in a dependency.