spicedb-rust 0.3.1

A client for spicedb
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn main() {
    tonic_build::configure()
        .include_file("_includes.rs")
        .build_server(false)
        .compile(
            &[
                "proto/authzed/api/v1/permission_service.proto",
                "proto/authzed/api/v1/watch_service.proto",
                "proto/authzed/api/v1/experimental_service.proto",
                "proto/authzed/api/v1/schema_service.proto",
            ],
            &["proto"],
        )
        .unwrap();
}