Files
imphnen-backend-service/Cargo.toml
T

26 lines
817 B
TOML
Raw Normal View History

2025-02-03 21:53:42 +07:00
[package]
name = "imphnen-cms-be"
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"
sea-orm = { version = "1.1.4", features = ["sqlx-postgres", "macros", "with-json", "with-uuid", "runtime-tokio", "runtime-tokio-native-tls"] }
2025-02-03 21:53:42 +07:00
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
tokio = { version = "1.43.0", features = ["full"] }
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"] }
redis = "0.28.2"
2025-02-16 01:09:55 +07:00
lettre = { version = "0.11.12", features = ["tokio1-native-tls"] }
2025-02-07 22:26:32 +07:00
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = "z"