userp 0.0.4

Userp is a user account system inspired by Next Auth, with OAuth, password and email support, a ready-made Axum router with Askama templates, and more on the way!
Documentation
1
2
3
4
5
6
7
8
9
mod cookies;
mod extract;
#[cfg(feature = "axum-router")]
mod router;

use crate::core::CoreUserp;
use cookies::AxumUserpCookies;

pub type AxumUserp<S> = CoreUserp<S, AxumUserpCookies>;