forbidden 0.1.3

An auth library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod credentials;
mod errors;
pub mod forms;
pub mod identity;
pub mod password;
mod properties;
pub mod users;

pub mod prelude {
    pub use crate::credentials::Credential;
    pub use crate::errors::{AuthError, PasswordError, ResultAuth, ResultPwd};
    pub use crate::identity::{Identity, IdentityProvider, IdentityProviderUserPwd, REALM_DEFAULT};
    pub use crate::password;
    pub use crate::password::{Password, PasswordIsSafe};
    pub use crate::properties::Properties;
}