Skip to main content

openauth_core/
lib.rs

1//! Core types and primitives for OpenAuth.
2
3pub mod api;
4pub mod auth;
5pub mod context;
6pub mod cookies;
7pub mod crypto;
8pub mod db;
9pub mod env;
10pub mod error;
11pub mod options;
12pub mod plugin;
13pub mod rate_limit;
14pub mod session;
15pub mod user;
16pub mod utils;
17pub mod verification;
18
19pub use openauth_oauth as oauth;
20pub use openauth_social_providers as social_providers;
21
22/// Current crate version.
23pub const VERSION: &str = env!("CARGO_PKG_VERSION");