2025-02-03 21:53:42 +07:00
|
|
|
[package]
|
2025-03-30 16:08:58 +07:00
|
|
|
name = "imphnen-backend-service"
|
2025-02-03 21:53:42 +07:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
axum = { version = "0.8.1", features = ["multipart"] }
|
2025-02-07 22:26:32 +07:00
|
|
|
log = "0.4.25"
|
2025-02-03 21:53:42 +07:00
|
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0.138"
|
2025-03-20 22:41:20 +07:00
|
|
|
tokio = { version = "1.43.0" }
|
2025-02-07 22:26:32 +07:00
|
|
|
argon2 = { version = "0.5.3", features = ["password-hash"] }
|
|
|
|
|
jsonwebtoken = "9.3.1"
|
|
|
|
|
chrono = "0.4.39"
|
|
|
|
|
utoipa = { version = "5.3.1", features = ["axum_extras"] }
|
|
|
|
|
utoipa-swagger-ui = { version = "9.0.0", features = ["axum"] }
|
2025-02-16 01:09:55 +07:00
|
|
|
lettre = { version = "0.11.12", features = ["tokio1-native-tls"] }
|
2025-03-21 17:00:19 +07:00
|
|
|
surrealdb = { version = "2.2.1", features = ["kv-mem", "protocol-http"] }
|
2025-02-25 02:00:19 +07:00
|
|
|
thiserror = "2.0.11"
|
2025-03-14 17:50:37 +07:00
|
|
|
anyhow = "1.0.97"
|
2025-03-19 23:17:50 +07:00
|
|
|
rand = "0.9.0"
|
|
|
|
|
tower-http = { version = "0.6.2", features = ["cors"] }
|
2025-03-21 05:36:00 +07:00
|
|
|
validator = { version = "0.12", features = ["derive"] }
|
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
regex = "1.11.1"
|
2025-03-23 07:56:43 +07:00
|
|
|
axum-test = "17.2.0"
|
|
|
|
|
fancy-regex = "0.14.0"
|
2025-02-07 22:26:32 +07:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
lto = "fat"
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
panic = "abort"
|
|
|
|
|
opt-level = "z"
|