rtsa-services/crates/rtsa_db/Cargo.toml
soul-walker 505230b26c 1 重构rtsa_mqtt库,添加路由请求响应功能
2 修改库命名rtss->rtsa
2024-10-31 15:12:26 +08:00

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" }