zcash_client_backend 0.4.0

APIs for creating shielded Zcash light clients
1
2
3
4
5
6
7
8
9
10
use protobuf_codegen_pure;

fn main() {
    protobuf_codegen_pure::Codegen::new()
        .out_dir("src/proto")
        .inputs(&["proto/compact_formats.proto"])
        .includes(&["proto"])
        .run()
        .expect("Protobuf codegen failed");
}