actix-web-admin 0.1.1

A powerful admin panel library for Actix-web 4 applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod json_store;
pub mod middleware;
pub mod store;

pub use json_store::JsonUserStore;
pub use middleware::RequireAuth;
pub use store::{hash_password, verify_password, AuthError, User, UserStore};

/// Helper to generate a unique user ID (nanosecond timestamp as hex).
pub use store::generate_id;

/// Helper to get current timestamp in ISO 8601 format.
pub use store::timestamp;