Document protoc-gen-connect-rust installation#40
Merged
Conversation
External users have asked where to get the protoc-gen-connect-rust binary referenced in the buf.gen.yaml example. Add an 'Installing the plugins' subsection under Option A covering three install paths: - download a pre-built binary from the GitHub release (with sha256, cosign, and gh attestation verification commands) - cargo install --locked connectrpc-codegen - BSR remote plugin (planned, pending upstream acceptance) Also points users at the buffa repo for protoc-gen-buffa and protoc-gen-buffa-packaging. Closes #33
asacamano
approved these changes
Apr 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
External users have hit issue #33 ("missing info on installation of protoc-gen-connect-rust"). The README references the binary in the
buf.gen.yamlexample but never tells you where to get it.Adds an "Installing the plugins" subsection under Option A documenting three install paths:
sha256sum -c,gh attestation verify, andcosign verify-blobverification commands. The cosign cert-identity URL is hardcoded to the release workflow path so users can copy-paste it.cargo install --locked connectrpc-codegen— pulls the published codegen crate from crates.io and installsprotoc-gen-connect-rustinto$CARGO_HOME/bin.Also includes a one-line pointer to the buffa repo for
protoc-gen-buffaandprotoc-gen-buffa-packaging, which users on Option A also need.Closes #33.