2025-04-27 08:36:57 +09:00
|
|
|
[package]
|
2025-05-09 06:39:01 +09:00
|
|
|
name = "progress-pile-server"
|
2025-04-27 10:04:04 +09:00
|
|
|
version.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
repository.workspace = true
|
2025-04-27 08:36:57 +09:00
|
|
|
|
|
|
|
[dependencies]
|
2025-05-05 10:50:45 +09:00
|
|
|
argon2 = "0.5.3"
|
2025-05-06 14:44:57 +09:00
|
|
|
async-graphql.workspace = true
|
2025-05-05 10:50:45 +09:00
|
|
|
axum = "0.8.4"
|
|
|
|
clap = {workspace = true, features = ["derive"]}
|
2025-05-15 08:43:34 +09:00
|
|
|
progress-pile-core = {workspace = true, features = ["desktop"]}
|
|
|
|
progress-pile-migration-server.workspace = true
|
2025-04-27 08:36:57 +09:00
|
|
|
chrono = {workspace = true}
|
2025-05-12 08:49:51 +09:00
|
|
|
sea-orm = { workspace = true, features = ["sqlx-postgres"] }
|
2025-05-04 11:10:14 +09:00
|
|
|
serde.workspace = true
|
|
|
|
thiserror.workspace = true
|
|
|
|
tokio.workspace = true
|
|
|
|
toml.workspace = true
|
2025-05-13 08:54:15 +09:00
|
|
|
uuid.workspace = true
|
2025-05-05 10:50:45 +09:00
|
|
|
rand = "0.9.1"
|
2025-05-06 14:44:57 +09:00
|
|
|
async-graphql-axum = "7.0.16"
|
2025-05-13 08:54:15 +09:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tempfile.workspace = true
|