drogue-bazaar 0.3.0

A place to find tools for building your Rust application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Authentication and authorization tooling.

#[cfg(not(target_arch = "wasm32"))]
pub mod authz;
#[cfg(any(
    feature = "default-tls",
    feature = "native-tls",
    feature = "rustls-tls"
))]
#[cfg(not(target_arch = "wasm32"))]
pub mod openid;
#[cfg(not(target_arch = "wasm32"))]
pub mod pat;

mod error;
mod user;
pub use error::*;
pub use user::*;