feat: split middleware

This commit is contained in:
Maulana Sodiqin
2025-04-07 20:41:14 +07:00
parent 054f0f63ff
commit d2c333dbd6
11 changed files with 235 additions and 42 deletions
+27
View File
@@ -0,0 +1,27 @@
[package]
name = "imphnen-middleware-service"
version = "0.1.0"
edition = "2024"
[dependencies]
imphnen-iam-service = { version = "0.1.0", path = "../imphnen-iam-service" }
imphnen-entities = { version = "0.1.0", path = "../imphnen-entities" }
imphnen-libs = { version = "0.1.0", path = "../imphnen-libs" }
imphnen-utils = { version = "0.1.0", path = "../imphnen-utils" }
axum.workspace = true
serde.workspace = true
serde_json.workspace = true
utoipa.workspace = true
lazy_static.workspace = true
regex.workspace = true
validator.workspace = true
axum-test.workspace = true
surrealdb.workspace = true
rand.workspace = true
tokio.workspace = true
chrono.workspace = true
anyhow.workspace = true
tower-http.workspace = true
utoipa-swagger-ui.workspace = true
futures = "0.3.31"
tower = "0.5.2"