2025-04-22 14:38:32 +09:00
|
|
|
[workspace]
|
2025-05-09 06:39:01 +09:00
|
|
|
members = ["progress-pile-*"]
|
2025-06-12 08:37:25 +09:00
|
|
|
exclude = ["lazy-supplements"]
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[workspace.package]
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2024"
|
|
|
|
description = "Digital tools for Progress Pile, my personal lifehack."
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/fluo10/progres-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-06-13 08:32:35 +09:00
|
|
|
dioxus = { version = "0.6.0" }
|
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-06-12 08:37:25 +09:00
|
|
|
lazy-supplements-core.path = "lazy-supplements/lazy-supplements-core"
|
|
|
|
lazy-supplements-desktop.path = "lazy-supplements/lazy-supplements-desktop"
|
|
|
|
lazy-supplements-mobile.path = "lazy-supplements/lazy-supplements-mobile"
|
2025-05-13 19:43:52 +09:00
|
|
|
progress-pile-client = { path = "progress-pile-client", default-features = false }
|
|
|
|
progress-pile-core = { path = "progress-pile-core", default-features = false }
|
2025-05-15 08:43:34 +09:00
|
|
|
progress-pile-migration-client.path = "progress-pile-migration-client"
|
|
|
|
progress-pile-migration-core.path = "progress-pile-migration-core"
|
2025-06-13 08:32:35 +09:00
|
|
|
progress-pile-simple-ui.path = "progress-pile-simple-ui"
|
2025-05-01 20:43:03 +09:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2025-05-13 08:54:15 +09:00
|
|
|
tempfile = "3.20.0"
|
2025-05-03 11:17:38 +09:00
|
|
|
thiserror = "2.0.12"
|
2025-05-13 18:36:58 +09:00
|
|
|
tokio = {version = "1.44.2", features = ["macros", "sync"] }
|
2025-05-02 08:57:43 +09:00
|
|
|
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-06-13 08:32:35 +09:00
|
|
|
[profile]
|
|
|
|
|
|
|
|
[profile.wasm-dev]
|
|
|
|
inherits = "dev"
|
|
|
|
opt-level = 1
|
|
|
|
|
|
|
|
[profile.server-dev]
|
|
|
|
inherits = "dev"
|
|
|
|
|
|
|
|
[profile.android-dev]
|
|
|
|
inherits = "dev"
|
|
|
|
|