progress-pile/progress-pile-core/Cargo.toml

33 lines
744 B
TOML
Raw Normal View History

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-13 18:36:58 +09:00
default = ["desktop", "server"]
cli = ["dep:clap"]
desktop = ["cli", "sqlite", "fs"]
fs = []
sqlite = ["dep:sea-orm"]
postgres = ["sea-orm/sqlx-postgres"]
server = ["cli", "sqlite", "postgres", "fs"]
2025-05-01 20:43:03 +09:00
[dependencies]
async-graphql.workspace = true
2025-05-01 20:43:03 +09:00
chrono = {workspace = true}
2025-05-04 11:10:14 +09:00
chrono-tz.workspace = true
clap = { workspace = true, optional = true }
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-13 18:36:58 +09:00
sea-orm = { workspace = true, optional = 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
2025-05-13 18:36:58 +09:00