como/Cargo.toml
Kasper Juul Hermansen 425728e8fc
Some checks failed
renovate/artifacts Artifact file update failure
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is failing
chore(deps): update all dependencies
2023-09-13 23:23:35 +00:00

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.6", features = ["uuid"] }
async-graphql-axum = "6.0.6"
axum = { version = "0.6.20", features = ["headers", "macros"] }
axum-extra = { version = "0.7.7", 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.30", 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.3", features = ["derive", "env"] }
argon2 = { version = "0.5.2" }
rand_core = { version = "0.6.4" }
pretty_assertions = "1.4.0"
sealed_test = "1.0.0"