2025-05-01 20:43:03 +09:00
|
|
|
[package]
|
2025-05-09 06:39:01 +09:00
|
|
|
name = "progress-pile-core"
|
2025-05-01 20:43:03 +09:00
|
|
|
version.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
|
|
|
|
[features]
|
2025-05-04 11:10:14 +09:00
|
|
|
default = ["clap",]
|
|
|
|
clap = ["dep:clap"]
|
2025-05-12 08:49:51 +09:00
|
|
|
postgres = ["sea-orm/sqlx-postgres", "sea-orm/sqlx-postgres"]
|
|
|
|
server = ["clap", "postgres"]
|
2025-05-01 20:43:03 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2025-05-06 09:00:44 +09:00
|
|
|
async-graphql.workspace = true
|
2025-05-01 20:43:03 +09:00
|
|
|
axum = "0.8"
|
|
|
|
chrono = {workspace = true}
|
2025-05-04 11:10:14 +09:00
|
|
|
chrono-tz.workspace = true
|
|
|
|
clap = { workspace = true, optional = true }
|
2025-05-06 09:00:44 +09:00
|
|
|
csv = "1.3.1"
|
2025-05-08 06:33:08 +09:00
|
|
|
cynic = "3.10.0"
|
2025-05-01 20:43:03 +09:00
|
|
|
dotenv = {workspace = true}
|
2025-05-04 11:10:14 +09:00
|
|
|
iana-time-zone = "0.1.63"
|
2025-05-01 20:43:03 +09:00
|
|
|
log = "0.4.27"
|
2025-05-03 15:31:13 +09:00
|
|
|
sea-orm.workspace = true
|
2025-05-12 08:49:51 +09:00
|
|
|
sea-orm-migration.workspace = true
|
2025-05-04 11:10:14 +09:00
|
|
|
serde.workspace = true
|
|
|
|
thiserror.workspace = true
|
2025-05-02 08:57:43 +09:00
|
|
|
tokio.workspace = true
|
2025-05-04 11:10:14 +09:00
|
|
|
toml.workspace = true
|