link-common 0.5.2-rc.2

Shared Rust implementation for KalamDB link crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Authentication provider and models for KalamDB client.
//!
//! Handles JWT tokens, HTTP Basic Auth, async dynamic auth providers,
//! and authentication-related data models.

pub mod models;

#[cfg(feature = "tokio-runtime")]
mod provider;
#[cfg(feature = "tokio-runtime")]
pub use provider::{ArcDynAuthProvider, AuthProvider, DynamicAuthProvider, ResolvedAuth};