commit | c94cf4f90ac9e3e4806d30b1a90a6230b6f22c56 | [log] [tgz] |
---|---|---|
author | Chih-Hung Hsieh <chh@google.com> | Mon Oct 12 10:52:41 2020 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Mon Oct 12 10:52:41 2020 +0000 |
tree | 4c620d203f944742f253812029cb0dea6195e1f4 | |
parent | 2ef05ef5e346b4dd408d19a3ccba03a9f90ebc3c [diff] | |
parent | ee754b667a934869ea4ed6aaa3a9ee98114ebaf0 [diff] |
Copy description from Cargo.toml to METADATA am: 3592d87b82 am: b078d52cf7 am: ee754b667a Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/protobuf-codegen/+/1457155 Change-Id: If8a650470a1ca32997c245fd75cb86e255d75d15
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.