protobuf 1.0.11

Rust implementation of Google protocol buffers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh -ex

cd $(dirname $0)

# Build protoc-gen-rust
./rebuild.sh
# Generate from descriptor.proto
./regenerate.sh
# Build again with regenerated descriptor.proto
./rebuild.sh

./test.sh

rm -f perftest/Cargo.lock
./perftest/build-perftest-rust.sh

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