protobuf 0.0.10

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

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

protoc --rust_out . -Iproto proto/google/protobuf/*.proto

mv descriptor.rs lib/

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