openid-client 1.0.0-alpha.7

OpenID client for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(feature = "http_client")]
pub mod default_http_client;

#[cfg(feature = "jws_only_crypto")]
mod jws_only_crypto;
#[cfg(feature = "openssl_crypto")]
mod openssl_crypto;

#[cfg(feature = "jws_only_crypto")]
pub use jws_only_crypto::JwsOnlyCrypto;
#[cfg(feature = "openssl_crypto")]
pub use openssl_crypto::OpenSSLCrypto;