rtsa-services/crates/rtsa_db/Cargo.toml
soul-walker 61de18077e
All checks were successful
build / build-rust (push) Successful in 3m7s
1 添加用户密码加密、验证
2 添加用户名、邮箱等是否已经存在接口
2024-11-07 23:09:36 +08:00

28 lines
575 B
TOML

[package]
name = "rtsa_db"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
sqlx = { workspace = true, features = [
"runtime-tokio",
"macros",
"chrono",
"json",
"derive",
"postgres",
"uuid",
] }
thiserror = { workspace = true }
lazy_static = { workspace = true }
regex = { workspace = true }
argon2 = "0.5.3"
rand_core = { version = "0.6.4", features = ["std"] }
md-5 = "0.10.6"
rtsa_dto = { path = "../rtsa_dto" }
rtsa_log = { path = "../rtsa_log" }