rcfe-core 0.1.1

An asynchronous etcd v3 client library for Rust built on gRPC.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_prost_build::configure()
        .build_server(false)
        .compile_protos(
        &[
            "proto/rpc.proto",
            "proto/kv.proto",
            "proto/auth.proto",
            "proto/election.proto",
            "proto/lock.proto",
        ],
        &["proto"],
    )?;

    Ok(())
}