2024-08-29 15:45:28 +08:00
|
|
|
[package]
|
|
|
|
name = "rtss_db"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-09-14 16:45:33 +08:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
sqlx = { workspace = true, features = [
|
|
|
|
"runtime-tokio",
|
|
|
|
"macros",
|
|
|
|
"chrono",
|
|
|
|
"json",
|
|
|
|
"derive",
|
|
|
|
"postgres",
|
|
|
|
"uuid",
|
|
|
|
] }
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
|
|
|
rtss_dto = { path = "../rtss_dto" }
|
|
|
|
rtss_log = { path = "../rtss_log" }
|