86469d6b35
2.设计项目代码结构 3.实现草稿数据和发布数据数据库访问 4.实现草稿数据graphQL接口
21 lines
361 B
TOML
21 lines
361 B
TOML
[package]
|
|
name = "rtss_db"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
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" }
|