Rust client for SpiceDB, generated from protobuf definitions
This package translates protobuf definitions for SpiceDB hosted on buf.build into a Rust gRPC client built with tonic.
- Install
buf
CLI - https://docs.buf.build/installation - Install
cargo-make
-cargo install cargo-make
If you need to generate a new version of the client, run
cargo make build
This will use the buf
CLI to pull the latest protobuf definitions as well as any dependencies into
the proto
directory. It will then run a cargo build, generating the needed Rust code which you can
include using tonic::include_proto
.
If you are building because a new version of the SpiceDB API is released, you can use
tonic::include_proto
to pull in the generated code for the new version's gRPC module and nest it
under the appropriate Rust module name. For example,
pub mod v1 {
tonic::include_proto!("authzed.api.v1");
}
This crate is currently not distributed on crates.io. For now, simply tag the repo with a version string that matches the version string in Cargo.toml and reference it using a git dependency in your project.