2022-10-02 12:12:08 +02:00
|
|
|
[workspace]
|
2022-10-04 11:06:48 +02:00
|
|
|
members = [
|
|
|
|
"como_bin",
|
|
|
|
"como_core",
|
|
|
|
"como_domain",
|
|
|
|
"como_infrastructure",
|
|
|
|
"como_gql",
|
|
|
|
"como_api",
|
2023-08-20 00:23:27 +02:00
|
|
|
"como_auth",
|
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]
|
|
|
|
como_bin = { path = "./como_bin/" }
|
|
|
|
como_core = { path = "./como_core/" }
|
|
|
|
como_domain = { path = "./como_domain/" }
|
|
|
|
como_infrastructure = { path = "./como_infrastructure/" }
|
|
|
|
como_gql = { path = "./como_gql/" }
|
|
|
|
como_api = { path = "./como_api/" }
|
2023-08-20 00:23:27 +02:00
|
|
|
como_auth = { path = "./como_auth/" }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
|
|
|
async-trait = "0.1.68"
|
|
|
|
async-graphql = { version = "5.0.9", features = ["uuid"] }
|
|
|
|
async-graphql-axum = "5.0.9"
|
|
|
|
|
|
|
|
axum = { version = "0.6.18", features = ["headers", "macros"] }
|
2023-05-28 15:34:36 +02:00
|
|
|
axum-extra = { version = "0.7.4", features = ["cookie", "cookie-private"] }
|
|
|
|
axum-sessions = { version = "0.5.0" }
|
|
|
|
async-sqlx-session = { version = "0.4.0", features = ["pg"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0.68"
|
|
|
|
|
2023-05-28 15:34:36 +02:00
|
|
|
sqlx = { version = "0.6.2", 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
|
|
|
] }
|
2023-06-04 11:02:51 +02:00
|
|
|
chrono = { version = "0.4.26", features = ["serde"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2023-05-28 15:34:36 +02:00
|
|
|
tokio = { version = "1.28.2", features = ["full"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
|
2023-05-28 15:34:36 +02:00
|
|
|
uuid = { version = "1.3.3", features = ["v4", "fast-rng", "serde"] }
|
|
|
|
anyhow = "1.0.71"
|
2023-05-27 13:12:29 +02:00
|
|
|
dotenv = "0.15.0"
|
2023-05-28 15:34:36 +02:00
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
2023-05-27 13:12:29 +02:00
|
|
|
clap = { version = "4.3.0", features = ["derive", "env"] }
|
2023-05-28 15:34:36 +02:00
|
|
|
|
|
|
|
argon2 = { version = "0.5.0" }
|
|
|
|
rand_core = { version = "0.6.4" }
|
2023-08-20 00:23:27 +02:00
|
|
|
|
|
|
|
pretty_assertions = "1.4.0"
|
|
|
|
sealed_test = "1.0.0"
|