Work on axum support

This commit is contained in:
Lennart
2025-06-07 20:17:50 +02:00
parent 57832116aa
commit 790c657b08
38 changed files with 582 additions and 64 deletions

View File

@@ -9,6 +9,6 @@ pub mod xml;
pub use error::Error;
pub trait Principal: std::fmt::Debug + Clone + 'static {
pub trait Principal: std::fmt::Debug + Clone + Send + Sync + 'static {
fn get_id(&self) -> &str;
}