zecli 0.6.0

zcash wallet CLI - ssh keys as wallet seed, agent-friendly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main() -> Result<(), Box<dyn std::error::Error>> {
    // only run proto codegen for CLI builds (not wasm)
    if std::env::var("CARGO_FEATURE_CLI").is_ok() {
        tonic_build::configure()
            .build_server(false)
            .build_client(false)
            .compile(
                &["proto/zidecar.proto", "proto/lightwalletd.proto"],
                &["proto"],
            )?;
    }
    Ok(())
}