rocket_auth2 0.6.2

A high level authentication management library for Rocket applications. It supports both SQLite and Postgres.
Documentation
1
2
3
4
5
6
7
8
9
SQLite format 3@  .[2
���H�otableusersusersCREATE TABLE users (
    id INTEGER PRIMARY KEY,
    email TEXT UNIQUE,
    password TEXT NOT NULL,
    is_admin BOOL DEFAULT 0
    -- failed_login_attempts INTEGER DEFAULT 0

))=indexsqlite_autoindex_users_1users