commit | de4007ae5d39e18d7451b5ea85d383a9d6887888 | [log] [tgz] |
---|---|---|
author | Xin Li <delphij@google.com> | Thu Aug 27 09:44:13 2020 -0700 |
committer | Xin Li <delphij@google.com> | Thu Aug 27 09:44:13 2020 -0700 |
tree | 371f9b2367f6772ff5d046a1ecc559b0e0126834 | |
parent | c300d33b990956aa2d62d08cefb4e4c47ef93f0d [diff] | |
parent | 9eee38007307c26ef41073c25bb1367052b5606b [diff] |
Mark Android R (rvc-dev-plus-aosp-without-vendor@6692709) as merged Bug: 166295507 Merged-In: I0d2e660fd93ef3ddba63e46b3ac369996c151669 Change-Id: I9c8ae5c3fbd9d0d07b999a489dde20fe2491a731
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.