[workspace] members = [ "crates/*", "ci" ] resolver = "2" [workspace.dependencies] 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/" } 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"] } 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"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.68" sqlx = { version = "0.6.2", features = [ "runtime-tokio-rustls", "postgres", "migrate", "uuid", "offline", "time", "chrono", ] } chrono = { version = "0.4.26", features = ["serde"] } tokio = { version = "1.28.2", features = ["full"] } uuid = { version = "1.3.3", features = ["v4", "fast-rng", "serde"] } anyhow = "1.0.71" dotenv = "0.15.0" tracing = "0.1.37" tracing-subscriber = { version = "0.3.17", features = ["env-filter"] } clap = { version = "4.3.0", features = ["derive", "env"] } argon2 = { version = "0.5.0" } rand_core = { version = "0.6.4" } pretty_assertions = "1.4.0" sealed_test = "1.0.0"