2025-05-04 11:10:14 +09:00
|
|
|
[package]
|
2025-05-09 06:39:01 +09:00
|
|
|
name = "progress-pile-client"
|
2025-05-04 11:10:14 +09:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
|
|
|
|
[features]
|
2025-05-13 18:36:58 +09:00
|
|
|
default = ["desktop"]
|
|
|
|
desktop = ["dep:clap", "progress-pile-core/desktop", "dep:progress-pile-migration", "dep:sea-orm", "tokio/io-util", "tokio/fs"]
|
2025-05-15 07:28:06 +09:00
|
|
|
web = ["uuid/js"]
|
2025-05-04 11:10:14 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2025-05-10 17:55:15 +09:00
|
|
|
chrono.workspace = true
|
2025-05-06 22:15:29 +09:00
|
|
|
chrono-tz.workspace = true
|
2025-05-04 11:10:14 +09:00
|
|
|
clap = { workspace = true, optional = true }
|
2025-05-08 06:33:08 +09:00
|
|
|
dirs.workspace = true
|
2025-05-09 06:39:01 +09:00
|
|
|
progress-pile-core.workspace = true
|
2025-05-13 18:36:58 +09:00
|
|
|
progress-pile-migration = { workspace = true, features = ["client"], optional = true}
|
|
|
|
sea-orm = { workspace = true, optional = true }
|
2025-05-04 11:10:14 +09:00
|
|
|
serde.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
tokio.workspace = true
|
2025-05-06 22:15:29 +09:00
|
|
|
toml.workspace = true
|
2025-05-12 20:29:46 +09:00
|
|
|
uuid.workspace = true
|
|
|
|
|
2025-05-15 07:28:06 +09:00
|
|
|
[target.'cfg(not(target_family="wasm"))'.dev-dependencies]
|
2025-05-13 08:54:15 +09:00
|
|
|
tempfile.workspace = true
|