2025-04-22 14:38:32 +09:00
|
|
|
[workspace]
|
2025-05-09 06:39:01 +09:00
|
|
|
members = ["progress-pile-*"]
|
2025-04-24 09:26:24 +09:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2025-05-06 09:00:44 +09:00
|
|
|
async-graphql = { version = "7.0", features = ["chrono"] }
|
2025-04-28 20:15:58 +09:00
|
|
|
chrono = {version = "0.4", features = ["serde"]}
|
2025-05-03 11:17:38 +09:00
|
|
|
chrono-tz = {version = "0.10.3", features = ["serde"]}
|
2025-05-04 11:10:14 +09:00
|
|
|
clap = {version = "4.5", features = ["derive"]}
|
2025-05-08 06:33:08 +09:00
|
|
|
dirs = "6.0.0"
|
2025-04-27 19:22:46 +09:00
|
|
|
dotenv = "0.15.0"
|
2025-05-09 06:39:01 +09:00
|
|
|
progress-pile-cli.path = "progress-pile-cli"
|
|
|
|
progress-pile-client.path = "progress-pile-client"
|
|
|
|
progress-pile-core = { path = "progress-pile-core" }
|
2025-05-10 13:58:37 +09:00
|
|
|
progress-pile-migration = { path = "progress-pile-migration", default-features = false }
|
2025-05-09 06:39:01 +09:00
|
|
|
progress-pile-server.path = "progress-pile-server"
|
2025-05-01 20:43:03 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2025-05-03 11:17:38 +09:00
|
|
|
thiserror = "2.0.12"
|
2025-05-02 08:57:43 +09:00
|
|
|
tokio = "1.44.2"
|
|
|
|
toml = "0.8.22"
|
2025-05-10 17:55:15 +09:00
|
|
|
uuid = { version = "1.16.0", features = [ "serde", "v4" ] }
|
2025-04-27 10:04:04 +09:00
|
|
|
|
2025-05-03 15:31:13 +09:00
|
|
|
[workspace.dependencies.sea-orm]
|
|
|
|
version = "1.1"
|
|
|
|
features = [
|
|
|
|
"macros",
|
|
|
|
"debug-print",
|
|
|
|
"runtime-tokio-native-tls",
|
|
|
|
"sqlx-sqlite",
|
|
|
|
"with-chrono",
|
2025-05-10 17:55:15 +09:00
|
|
|
"with-uuid",
|
2025-05-03 15:31:13 +09:00
|
|
|
]
|
|
|
|
default-features = false
|
|
|
|
|
2025-05-10 13:58:37 +09:00
|
|
|
[workspace.dependencies.sea-orm-migration]
|
|
|
|
version = "1.1.0"
|
|
|
|
features = [
|
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"sqlx-sqlite",
|
|
|
|
]
|
|
|
|
|
2025-04-27 10:04:04 +09:00
|
|
|
[workspace.package]
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
license = "MIT"
|
2025-05-09 06:39:01 +09:00
|
|
|
repository = "https://github.com/fluo10/progres-pile"
|
2025-04-27 10:04:04 +09:00
|
|
|
|