You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
522 B
Rust

/// Bearer Capabilities implementation, see <https://docs.joinmastodon.org/spec/bearcaps/>.
pub mod bear;
/// RSA key and signature management stuff.
pub mod crypto;
/// Utilities related to HTTP.
pub mod http;
/// Password hashing facilities and types.
pub mod password;
/// Cursor utilities for parsers.
pub mod slice;
/// Wrappers for [`jsonwebtoken`].
pub mod token;
/// Wrappers for various encoding schemes.
pub mod transcode;
/// Validation framework.
pub mod validate;
/// Some XSD types and parsers.
pub mod xsd;