protoc 2.8.1

Protobuf protoc command as API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

cd $(dirname $0)

(
    echo "building protoc-gen-rust"
    cd ../protobuf-codegen
    cargo build --bin=protoc-gen-rust
)

echo "cargo check in test-protoc"
cd test-protoc
exec cargo check --features=$RUST_PROTOBUF_FEATURES

# vim: set ts=4 sw=4 et: