2a7a2ffc99
All checks were successful
build / build-rust (push) Successful in 3m0s
实现配置项相关的CRUD 调整草稿数据管理接口
23 lines
424 B
TOML
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" }
|