protobuf 0.0.3

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

where_am_i=$(cd `dirname $0`/..; pwd)
PATH="$where_am_i/target:$PATH"

protoc --rust_out lib proto/shrug.proto
protoc --rust_out lib proto/test_root.proto
protoc --rust_out lib proto/test_nonunique_enum.proto
protoc --rust_out lib proto/test_ident.proto
protoc --rust_out lib proto/test_lite_runtime.proto
protoc --rust_out lib proto/text_format_test_data.proto

cargo test