rocket-simpleauth 0.4.0

Simple username/password authentication system for Rocket
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate rocket;

pub mod authenticator;

pub mod status;
pub mod userpass;

/// Example implementation of Authenticator and FromCookie and ToCookie
pub mod dummy;
mod config;