grpc 0.1.4

Rust implementation of gRPC
Documentation
1
2
3
4
5
6
7
8
9
#!/bin/sh -e

if test -z "$TRAVIS" && test -n "$TMPDIR" && rustc -Zhelp | egrep  '\<incremental=' > /dev/null; then
    export RUSTFLAGS="$RUSTFLAGS -Zincremental=$TMPDIR/grpc-rust"
fi

exec cargo "$@"

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