wearust/lib.rs
1//! Fark — A lightweight, pluggable authentication library for Rust.
2//!
3//! Provides strategy-based authentication and HMAC-SHA256 JWT support.
4
5pub mod error;
6pub mod fark;
7pub mod identity;
8pub mod input;
9pub mod jwt;
10pub mod strategy;
11pub mod time;
12
13pub use error::*;
14pub use fark::Fark;
15pub use identity::Identity;
16pub use input::AuthInput;
17
18pub use strategy::*;