36
Cargo.toml
36
Cargo.toml
@@ -7,3 +7,39 @@ members = [
|
||||
"como_gql",
|
||||
"como_api",
|
||||
]
|
||||
|
||||
[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/" }
|
||||
|
||||
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 = "*", features = ["cookie", "cookie-private"] }
|
||||
axum-sessions = { version = "*" }
|
||||
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0.68"
|
||||
|
||||
sqlx = { version = "0.6", features = [
|
||||
"runtime-tokio-rustls",
|
||||
"postgres",
|
||||
"migrate",
|
||||
"uuid",
|
||||
"offline",
|
||||
] }
|
||||
|
||||
tokio = { version = "1.20.1", features = ["full"] }
|
||||
|
||||
uuid = { version = "1.1.2", features = ["v4", "fast-rng", "serde"] }
|
||||
anyhow = "1.0.60"
|
||||
dotenv = "0.15.0"
|
||||
tracing = "0.1.36"
|
||||
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
||||
clap = { version = "4.3.0", features = ["derive", "env"] }
|
||||
|
Reference in New Issue
Block a user