505230b26c
2 修改库命名rtss->rtsa
24 lines
459 B
TOML
24 lines
459 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 }
|
|
|
|
rtsa_dto = { path = "../rtsa_dto" }
|
|
rtsa_log = { path = "../rtsa_log" }
|