zitadel 3.4.13

An implementation of ZITADEL API access and authentication in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module that contains credentials for ZITADEL.
//! This module allows accessing the ZITADEL API or
//! using ZITADEL as an OIDC provider. Can be used in conjunction
//! with the gRPC service clients to access the API.

mod application;
mod jwt;
mod service_account;

pub use application::*;
pub use service_account::*;