dioxus-clerk 0.2.0

Clerk integration for Dioxus: components, hooks, and SSR initial state for web and fullstack apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Server-side glue for Clerk in Dioxus fullstack apps.

mod claims;
mod config;
mod context;
mod extractor;
mod layer;
pub mod ssr;
mod verification;

pub use crate::core::{ClerkAuth, InvalidTokenReason, VerificationOutcome};
pub use config::ClerkAuthLayerConfig;
pub use context::{current_auth, current_auth_opt, current_outcome};
pub use extractor::AuthRejection;
pub use layer::{ClerkAuthLayer, ClerkAuthService};