adk-auth 0.5.0

Access control and authentication for Rust Agent Development Kit (ADK-Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! SSO provider implementations.

mod oidc;

pub use oidc::OidcProvider;

// Provider-specific implementations
mod auth0;
mod azure;
mod google;
mod okta;

pub use auth0::Auth0Provider;
pub use azure::AzureADProvider;
pub use google::GoogleProvider;
pub use okta::OktaProvider;