fix: utoipa-scalar version, lib.rs.liquid for oidc conditional

This commit is contained in:
2026-05-18 00:44:35 +02:00
parent 5b0d5bf15d
commit e3552fd50d
2 changed files with 8 additions and 1 deletions

View File

@@ -31,7 +31,7 @@ sqlx = { version = "0.8", features = ["runtime-tokio", "uuid", "chrono"
jsonwebtoken = "9.3" jsonwebtoken = "9.3"
bcrypt = "0.15" bcrypt = "0.15"
utoipa = { version = "5.3", features = ["axum_extras", "uuid", "chrono"] } utoipa = { version = "5.3", features = ["axum_extras", "uuid", "chrono"] }
utoipa-scalar = { version = "5.0", features = ["axum"] } utoipa-scalar = { version = "0.3", features = ["axum"] }
domain = { path = "crates/domain" } domain = { path = "crates/domain" }
application = { path = "crates/application" } application = { path = "crates/application" }
api-types = { path = "crates/api-types" } api-types = { path = "crates/api-types" }

View File

@@ -0,0 +1,7 @@
pub mod jwt;
{% if auth_oidc %}pub mod oidc;{% endif %}
pub mod password;
pub use jwt::JwtTokenIssuer;
{% if auth_oidc %}pub use oidc::OidcAdapter;{% endif %}
pub use password::BcryptPasswordHasher;