rtsa-services/crates/rtss_db/Cargo.toml
soul-walker 2a7a2ffc99
All checks were successful
build / build-rust (push) Successful in 3m0s
草稿和发布数据添加options配置项
实现配置项相关的CRUD
调整草稿数据管理接口
2024-09-19 00:07:53 +08:00

23 lines
424 B
TOML

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