2024-08-29 15:45:28 +08:00
|
|
|
[package]
|
2024-10-31 15:12:26 +08:00
|
|
|
name = "rtsa_db"
|
2024-08-29 15:45:28 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-14 16:45:33 +08:00
|
|
|
anyhow = { workspace = true }
|
2024-09-19 00:07:53 +08:00
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
2024-09-14 16:45:33 +08:00
|
|
|
sqlx = { workspace = true, features = [
|
|
|
|
"runtime-tokio",
|
|
|
|
"macros",
|
|
|
|
"chrono",
|
|
|
|
"json",
|
|
|
|
"derive",
|
|
|
|
"postgres",
|
|
|
|
"uuid",
|
|
|
|
] }
|
|
|
|
thiserror = { workspace = true }
|
2024-10-30 09:47:31 +08:00
|
|
|
lazy_static = { workspace = true }
|
2024-11-07 18:06:42 +08:00
|
|
|
regex = { workspace = true }
|
2024-11-07 23:09:36 +08:00
|
|
|
argon2 = "0.5.3"
|
|
|
|
rand_core = { version = "0.6.4", features = ["std"] }
|
|
|
|
md-5 = "0.10.6"
|
2024-09-14 16:45:33 +08:00
|
|
|
|
2024-10-31 15:12:26 +08:00
|
|
|
rtsa_dto = { path = "../rtsa_dto" }
|
|
|
|
rtsa_log = { path = "../rtsa_log" }
|