Expand description
Utility helpers.
Provides password hashing and tokens (CryptoHelper), JSON/base64/token
helpers (DataHelpers), date helpers (date::DateUtils), an outbound JSON
HTTP client (http_client::HttpClient), request parsing
(request_parser::RequestParser with multipart support), debouncers
(TimeDebouncers), and the shared-value holder (atom::AtomHolder).
Use these for cross-cutting tasks that do not belong to a specific domain module.
Re-exports§
pub use crypto::CryptoHelper;pub use data_helpers::DataHelpers;pub use time_debouncers::TimeDebouncers;
Modules§
- atom
- Shared optional value holder.
- crypto
- Password hashing and token generation.
- data_
helpers - JSON, base64, and token helpers.
- date
- UTC date and time helpers.
- http_
client - Outbound JSON HTTP client.
- request_
parser - Query, JSON, and multipart request parsing.
- time_
debouncers - Time-based debouncers.