keldra-api 0.15.0

Rust gRPC API types for Keldra object storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
fn main() -> Result<(), Box<dyn std::error::Error>> {
    println!("cargo:rerun-if-changed=proto/keldra.proto");
    println!("cargo:rerun-if-changed=proto/personaldb.proto");
    tonic_prost_build::configure()
        .build_server(true)
        .build_client(true)
        .compile_protos(
            &["proto/keldra.proto", "proto/personaldb.proto"],
            &["proto"],
        )?;
    Ok(())
}