spicedb-embedded 0.7.0

Embedded SpiceDB for Rust - embedded authorization using the standard gRPC API
Documentation
//! Embedded `SpiceDB` using CGO FFI with native gRPC.
//!
//! This crate provides an in-process `SpiceDB` instance for authorization checks.
//! It uses a C-shared library to start `SpiceDB` servers, then connects via Unix
//! socket. All API access is through tonic clients generated from
//! [buf.build/authzed/api](https://buf.build/authzed/api) (see the `spicedb-grpc-tonic` crate).
//!
//! # Example
//!
//! ```ignore
//! use spicedb_embedded::{v1, EmbeddedSpiceDB};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//!     let schema = r#"
//! definition user {}
//! definition document {
//!     relation reader: user
//!     permission read = reader
//! }
//! "#;
//!
//!     let relationships = vec![v1::Relationship {
//!         resource: Some(v1::ObjectReference { object_type: "document".into(), object_id: "readme".into() }),
//!         relation: "reader".into(),
//!         subject: Some(v1::SubjectReference {
//!             object: Some(v1::ObjectReference { object_type: "user".into(), object_id: "alice".into() }),
//!             optional_relation: String::new(),
//!         }),
//!         optional_caveat: None,
//!     }];
//!
//!     let spicedb = EmbeddedSpiceDB::start_with_schema(schema, &relationships, None)?;
//!     let mut permissions = spicedb.permissions();
//!     // Use the full SpiceDB API via the generated client
//!     let response = permissions.check_permission(&v1::CheckPermissionRequest {
//!         consistency: None,
//!         resource: Some(v1::ObjectReference { object_type: "document".into(), object_id: "readme".into() }),
//!         permission: "read".into(),
//!         subject: Some(v1::SubjectReference {
//!             object: Some(v1::ObjectReference { object_type: "user".into(), object_id: "alice".into() }),
//!             optional_relation: String::new(),
//!         }),
//!         context: None,
//!         with_tracing: false,
//!     })?;
//!     Ok(())
//! }
//! ```

mod spicedb;

pub use spicedb::{EmbeddedSpiceDB, MemoryPermissionsClient, MemorySchemaClient, StartOptions};
// Re-export spicedb-grpc so users have direct access to all generated types
pub use spicedb_grpc_tonic::v1;

/// Errors from embedded `SpiceDB` operations
#[derive(Debug, thiserror::Error)]
pub enum SpiceDBError {
    /// Failed to load the module (WASM or shared library)
    #[error("failed to load module: {0}")]
    ModuleLoad(String),

    /// Runtime error during execution
    #[error("runtime error: {0}")]
    Runtime(String),

    /// Protocol error in communication
    #[error("protocol error: {0}")]
    Protocol(String),

    /// Error from `SpiceDB` itself
    #[error("SpiceDB error: {0}")]
    SpiceDB(String),
}