datastore_grpc 0.4.0

A gRPC client library for Datastore, generated automatically from the API definition files in Google APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure().build_server(false).compile(
        &[
            "proto/google/datastore/v1/datastore.proto",
            "proto/google/datastore/v1beta3/datastore.proto",
        ],
        &["proto"],
    )?;
    Ok(())
}