61de18077e
All checks were successful
build / build-rust (push) Successful in 3m7s
2 添加用户名、邮箱等是否已经存在接口
28 lines
575 B
TOML
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" }
|