tideway 0.1.0

A batteries-included Rust web framework built on Axum for building SaaS applications quickly
1
2
3
4
5
6
7
8
9
10
11
pub mod extractors;
pub mod jwt;
pub mod middleware;
pub mod provider;
pub mod token;

pub use extractors::{AuthUser, OptionalAuth};
pub use jwt::{JwkSet, JwtVerifier};
pub use middleware::RequireAuth;
pub use provider::AuthProvider;
pub use token::TokenExtractor;