rocket_auth 0.4.0

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
10
{% extends "base" %}
{% block body %}
<ul>
    {% for user in users -%}
    <li> {{ user.email }}</li>
    {% else %}
    There are no registered users.
    {%- endfor %}
</ul>
{% endblock body %}