entropy-auth 2026.7.31

Authentication and authorization for Entropy Softworks server and API projects
1
2
3
4
5
6
7
8
9
10
//! Shared utility types used across the crate.
//!
//! - [`timestamp`] — UTC timestamp via the Hinnant civil-date algorithm.
//! - [`validation`] — input validators for usernames, names, OAuth
//!   redirect URIs, scopes, and client identifiers.
//! - `log` — internal `tracing` macro shim (`pub(crate)`).

pub(crate) mod log;
pub mod timestamp;
pub mod validation;