1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Replace serde_with's base64 encoding / decoding with a custom wrapper (#1526)

Co-authored-by: Quentin Gliech <quenting@element.io>
This commit is contained in:
Jonas Platte
2023-08-24 17:40:25 +02:00
committed by GitHub
parent e94840c7fb
commit 70e6489f17
7 changed files with 230 additions and 106 deletions

View File

@@ -17,8 +17,11 @@
#![warn(clippy::pedantic)]
#![allow(clippy::missing_errors_doc, clippy::module_name_repetitions)]
mod base64;
pub mod claims;
pub mod constraints;
pub mod jwa;
pub mod jwk;
pub mod jwt;
pub use self::base64::Base64;