commit | 779961d05980fc965aa30168d1f4ba0abcc064f4 | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Tue Nov 24 00:56:40 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Nov 24 00:56:40 2020 +0000 |
tree | 22450d346014c54c391910744bc39e20cbc42889 | |
parent | 7d054f7c3978da2726ac79bc5cfbfa8b1b516137 [diff] | |
parent | 5f36290b111053cca151d5726c75545d4fd9a05f [diff] |
Mark ab/6881855 as merged am: 2e060e3448 am: 5f36290b11 Original change: https://googleplex-android-review.googlesource.com/c/platform/external/rust/crates/protobuf-codegen/+/13112937 Change-Id: I4befaedd5a0a23d43676e437a26189d23621e720
This crate contains protobuf code generator and a protoc-gen-rust
protoc
plugin.
protoc-gen-rust
implements standard protobuf protoc
plugin conventions.
Probably you do not want to use it directly in Rust environment, there are easier to use alternatives:
build.rs
of your project which requires only protoc
in $PATH
but not protoc-gen-rust
.protoc
binary(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.