2025-05-01 20:43:03 +09:00
|
|
|
[package]
|
|
|
|
name = "dpts-database"
|
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[features]
|
2025-05-03 11:17:38 +09:00
|
|
|
default = ["server", "client"]
|
|
|
|
client = []
|
|
|
|
server = []
|
2025-05-01 20:43:03 +09:00
|
|
|
test = []
|
|
|
|
|
|
|
|
[dependencies]
|
2025-05-03 11:17:38 +09:00
|
|
|
dpts-config.workspace = true
|
2025-05-01 20:43:03 +09:00
|
|
|
dpts-entity = { workspace = true }
|
|
|
|
dpts-migration = { workspace = true }
|
|
|
|
async-graphql = {version = "7.0", features = ["chrono"]}
|
|
|
|
axum = "0.8"
|
|
|
|
chrono = {workspace = true}
|
|
|
|
dotenv = {workspace = true}
|
|
|
|
log = "0.4.27"
|
2025-05-03 15:31:13 +09:00
|
|
|
sea-orm.workspace = true
|
2025-05-02 08:57:43 +09:00
|
|
|
tokio.workspace = true
|
2025-05-01 20:43:03 +09:00
|
|
|
|
2025-05-03 15:31:13 +09:00
|
|
|
|
2025-05-03 11:17:38 +09:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
dpts-config = { workspace = true, features = ["test"] }
|