2025-04-27 10:04:04 +09:00
|
|
|
[package]
|
2025-05-01 08:32:50 +09:00
|
|
|
name = "dpts-entity"
|
2025-04-27 10:04:04 +09:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
2025-05-01 08:32:50 +09:00
|
|
|
license.workspace = true
|
2025-04-27 10:04:04 +09:00
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2025-04-28 14:56:28 +09:00
|
|
|
dpts-migration = { workspace = true }
|
2025-04-28 20:15:58 +09:00
|
|
|
async-graphql = {version = "7.0", features = ["chrono"]}
|
2025-04-27 19:22:46 +09:00
|
|
|
axum = "0.8"
|
2025-04-27 10:04:04 +09:00
|
|
|
chrono = {workspace = true}
|
2025-04-27 19:22:46 +09:00
|
|
|
dotenv = {workspace = true}
|
2025-04-28 14:56:28 +09:00
|
|
|
log = "0.4.27"
|
2025-05-01 20:43:03 +09:00
|
|
|
serde = { workspace = true }
|
2025-04-28 14:56:28 +09:00
|
|
|
tokio = "1.44.2"
|
2025-04-27 19:22:46 +09:00
|
|
|
|
|
|
|
[dependencies.sea-orm]
|
|
|
|
version = "1.1"
|
|
|
|
features = [
|
|
|
|
"macros",
|
|
|
|
"debug-print",
|
|
|
|
"runtime-tokio-native-tls",
|
|
|
|
"sqlx-sqlite",
|
2025-04-28 20:15:58 +09:00
|
|
|
"with-chrono",
|
2025-04-27 19:22:46 +09:00
|
|
|
]
|
2025-05-04 11:10:14 +09:00
|
|
|
default-features = false
|