zitadel 3.1.13

An implementation of ZITADEL API access and authentication in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Module with API elements and definitions of ZITADEL.
//! Contains the compiled ZITADEL gRPC API as well
//! as the gRPC clients and constructors for clients.
//!
//! Further contains interceptors that may be used to
//! authenticate the clients to ZITADEL with credentials.

pub use api::zitadel;

mod api;
pub mod clients;
#[cfg(feature = "interceptors")]
pub mod interceptors;