2022-10-02 12:12:08 +02:00
|
|
|
[workspace]
|
2022-10-04 11:06:48 +02:00
|
|
|
members = [
|
2023-10-22 12:31:53 +02:00
|
|
|
"crates/*",
|
|
|
|
"ci"
|
2022-10-04 11:06:48 +02:00
|
|
|
]
|
2023-06-04 11:02:51 +02:00
|
|
|
resolver = "2"
|
2023-05-27 13:12:29 +02:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2023-10-21 11:14:58 +02:00
|
|
|
como_bin = { path = "./crates/como_bin/" }
|
|
|
|
como_core = { path = "./crates/como_core/" }
|
|
|
|
como_domain = { path = "./crates/como_domain/" }
|
|
|
|
como_infrastructure = { path = "./crates/como_infrastructure/" }
|
|
|
|
como_gql = { path = "./crates/como_gql/" }
|
|
|
|
como_api = { path = "./crates/como_api/" }
|
|
|
|
como_auth = { path = "./crates/como_auth/" }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
async-trait = "0.1.80"
|
|
|
|
async-graphql = { version = "7.0.5", features = ["uuid"] }
|
|
|
|
async-graphql-axum = "7.0.5"
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
axum = { version = "0.7.5", features = ["headers", "macros"] }
|
|
|
|
axum-extra = { version = "0.9.3", features = ["cookie", "cookie-private"] }
|
|
|
|
axum-sessions = { version = "0.6.1" }
|
2023-05-28 15:34:36 +02:00
|
|
|
async-sqlx-session = { version = "0.4.0", features = ["pg"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-05-18 14:30:59 +02:00
|
|
|
serde_json = "1.0.117"
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
sqlx = { version = "0.7.4", features = [
|
2023-05-27 13:12:29 +02:00
|
|
|
"runtime-tokio-rustls",
|
|
|
|
"postgres",
|
|
|
|
"migrate",
|
|
|
|
"uuid",
|
|
|
|
"offline",
|
2023-06-04 11:02:51 +02:00
|
|
|
"time",
|
|
|
|
"chrono",
|
2023-05-27 13:12:29 +02:00
|
|
|
] }
|
2024-05-18 14:30:59 +02:00
|
|
|
chrono = { version = "0.4.38", features = ["serde"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
tokio = { version = "1.37.0", features = ["full"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
uuid = { version = "1.8.0", features = ["v4", "fast-rng", "serde"] }
|
|
|
|
anyhow = "1.0.86"
|
2023-05-27 13:12:29 +02:00
|
|
|
dotenv = "0.15.0"
|
2024-05-18 14:30:59 +02:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
|
|
clap = { version = "4.5.4", features = ["derive", "env"] }
|
2023-05-28 15:34:36 +02:00
|
|
|
|
2024-05-18 14:30:59 +02:00
|
|
|
argon2 = { version = "0.5.3" }
|
2023-05-28 15:34:36 +02:00
|
|
|
rand_core = { version = "0.6.4" }
|
2023-08-20 00:23:27 +02:00
|
|
|
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
sealed_test = "1.0.0"
|