openbao 0.7.0

Secure, typed, async Rust SDK for OpenBao
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Authentication methods.

#[cfg(feature = "approle")]
pub mod approle;
#[cfg(feature = "cert-auth")]
pub mod cert;
#[cfg(feature = "jwt-auth")]
pub mod jwt;
#[cfg(feature = "kubernetes-auth")]
pub mod kubernetes;
#[cfg(feature = "token")]
pub mod token;
#[cfg(feature = "userpass")]
pub mod userpass;