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
When I add the following to my workspace file:
crates_repository( name = "crate_index", annotations = { "protobuf-codegen": [crate.annotation( gen_binaries = ["protoc-gen-rust"], )], }, cargo_lockfile = "//:cargo.lock", lockfile = "//:cargo.Bazel.lock", packages = { "protobuf-codegen": crate.spec( version = "3.7.1", ), }, render_config = render_config( default_package_name = "", ), )
the cargo.Bazel.lock shows
"binary_crates": [],
But when I drop the protobuf-codegen version to 2.28.0 the cargo.Bazel.lock shows
"binary_crates": [ "protobuf-codegen 2.28.0" ],
This is unexpected because the protobuf-codegen 3.x.x appears to me to be a binary crate just like 2.x.x
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I add the following to my workspace file:
the cargo.Bazel.lock shows
But when I drop the protobuf-codegen version to 2.28.0 the cargo.Bazel.lock shows
This is unexpected because the protobuf-codegen 3.x.x appears to me to be a binary crate just like 2.x.x
The text was updated successfully, but these errors were encountered: