commit | b909247d94d7212a1ebf5d6b1e9964932491f662 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <[email protected]> | Fri Mar 11 03:17:34 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Mar 11 03:17:34 2022 +0000 |
tree | eda2c3bcc49d645d0edc2b67d1b0dd8ce05e8ec4 | |
parent | bc9227eceb93d3a8e0b73ae5c45fb7723001a9d1 [diff] | |
parent | dcf8cf0a7e5972255ff126db5995cd19126d880a [diff] |
Merge "Update protobuf-codegen to 2.27.1" am: 78338078b5 am: ad6438f959 am: eef6b8189c am: dcf8cf0a7e Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/protobuf-codegen/+/2005934 Change-Id: I7ced60a2b3dca6a75cc9732cb53295ca78cb03e2
This crate contains protobuf code generator implementation and a protoc-gen-rust
protoc
plugin.
This crate:
protoc-gen-rust
plugin for protoc
commandThis crate is not meant to be used directly, in fact, it does not provide any public API (except for protoc-gen-rust
binary).
Code can be generated with either:
protoc-gen-rust
plugin for protoc
orprotoc-rust
crate (code generator which depends on protoc
binary for parsing of .proto
files)protobuf-codegen-pure
crate, similar API to protoc-rust
, but uses pure rust parser of .proto
files.protoc-gen-rust
plugin for protoc
When non-cargo build system is used, consider using standard protobuf code generation pattern: protoc
command does all the work of handling paths and parsing .proto
files. When protoc
is invoked with --rust_out=
option, it invokes protoc-gen-rust
plugin. provided by this crate.
When building with cargo, consider using protoc-rust
or protobuf-codegen-pure
crates.
protoc-gen-rust
if you have to(Note protoc
can be invoked programmatically with protoc crate)
protoc
binary.On OS X Homebrew can be used:
brew install protobuf
On Ubuntu, protobuf-compiler
package can be installed:
apt-get install protobuf-compiler
Protobuf is needed only for code generation, rust-protobuf
runtime does not use protobuf
library.
protoc-gen-rust
program (which is protoc
plugin)It can be installed either from source or with cargo install protobuf
command.
protoc-gen-rust
to $PATHIf you installed it with cargo, it should be
PATH="$HOME/.cargo/bin:$PATH"
protoc --rust_out . foo.proto
This will generate .rs files in current directory.
This is documentation for version 2 of the crate.
Version 3 of the crate (currently in development) encapsulates both protoc
and pure codegens in this crate.