59 lines
1.5 KiB
TOML
59 lines
1.5 KiB
TOML
[workspace]
|
|
members = [
|
|
"como_bin",
|
|
"como_core",
|
|
"como_domain",
|
|
"como_infrastructure",
|
|
"como_gql",
|
|
"como_api",
|
|
"como_auth",
|
|
]
|
|
resolver = "2"
|
|
|
|
[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/" }
|
|
como_auth = { path = "./como_auth/" }
|
|
|
|
async-trait = "0.1.73"
|
|
async-graphql = { version = "6.0.7", features = ["uuid"] }
|
|
async-graphql-axum = "6.0.7"
|
|
|
|
axum = { version = "0.6.20", features = ["headers", "macros"] }
|
|
axum-extra = { version = "0.8.0", features = ["cookie", "cookie-private"] }
|
|
axum-sessions = { version = "0.5.0" }
|
|
async-sqlx-session = { version = "0.4.0", features = ["pg"] }
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
|
|
sqlx = { version = "0.7.1", features = [
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
"migrate",
|
|
"uuid",
|
|
"offline",
|
|
"time",
|
|
"chrono",
|
|
] }
|
|
chrono = { version = "0.4.31", features = ["serde"] }
|
|
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
|
|
uuid = { version = "1.4.1", features = ["v4", "fast-rng", "serde"] }
|
|
anyhow = "1.0.75"
|
|
dotenv = "0.15.0"
|
|
tracing = "0.1.37"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
clap = { version = "4.4.4", features = ["derive", "env"] }
|
|
|
|
argon2 = { version = "0.5.2" }
|
|
rand_core = { version = "0.6.4" }
|
|
|
|
pretty_assertions = "1.4.0"
|
|
sealed_test = "1.0.0"
|