We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
protobuf
Your crate rust-criu does not have the correct dependency requirement for protobuf: Cargo.toml:13:
rust-criu
Cargo.toml:13
protobuf = "3.2.0"
This is fatal as this WILL bring build errors on anything that depends on your crate once a newer version of protobuf is available.
Specify the version for protobuf exactly:
protobuf = "= 3.2.0"
and consider yanking previous versions of this crate. (All of them break anyway.)
And plus, now you can safely remove rust_criu_protobuf/rpc.rs:26 knowing that the protobuf version is definitely 3.2.0.
rust_criu_protobuf/rpc.rs:26
3.2.0
The text was updated successfully, but these errors were encountered:
pin protobuf dependency version to 3.2.0
7078b44
fixes checkpoint-restore#19 Signed-off-by: Yashodhan Joshi <[email protected]>
@adrianreber may I ask you to release this change as a new crate version - maybe 0.4.1, so we can vendor it?
Thanks!
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Your crate is BROKEN
Your crate
rust-criu
does not have the correct dependency requirement forprotobuf
:Cargo.toml:13
:This is fatal as this WILL bring build errors on anything that depends on your crate once a newer version of
protobuf
is available.Solution
Specify the version for
protobuf
exactly:and consider yanking previous versions of this crate. (All of them break anyway.)
And plus, now you can safely remove
rust_criu_protobuf/rpc.rs:26
knowing that theprotobuf
version is definitely3.2.0
.The text was updated successfully, but these errors were encountered: