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
10
11
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize)]
pub struct NewPasswordForm {
    pub new_password: String,
}

#[derive(Serialize, Deserialize)]
pub struct EmailForm {
    pub email: String,
}