rtsa-services/crates/rtss_db/Cargo.toml

23 lines
424 B
TOML
Raw Normal View History

[package]
name = "rtss_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 }
rtss_dto = { path = "../rtss_dto" }
rtss_log = { path = "../rtss_log" }