Skip to content

StructionSite/spicedb-client-rust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spicedb-client-rust

Rust client for SpiceDB, generated from protobuf definitions

How to build

This package translates protobuf definitions for SpiceDB hosted on buf.build into a Rust gRPC client built with tonic.

Prequisites

  1. Install buf CLI - https://docs.buf.build/installation
  2. Install cargo-make - cargo install cargo-make

Regenerating the client

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.

Including in the crate

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");
}

How to release

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.

About

Rust client for SpiceDB, generated from protobuf definitions

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages