como/Cargo.toml

53 lines
1.4 KiB
TOML
Raw Normal View History

2022-10-02 12:12:08 +02:00
[workspace]
2022-10-04 11:06:48 +02:00
members = [
"crates/*"
2022-10-04 11:06:48 +02:00
]
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/" }
2023-10-21 11:39:58 +02:00
async-trait = "0.1.74"
async-graphql = { version = "6.0.9", features = ["uuid"] }
async-graphql-axum = "6.0.9"
2023-10-21 11:39:58 +02:00
axum = { version = "0.6.20", features = ["headers", "macros"] }
axum-extra = { version = "0.8.0", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "0.6.1" }
async-sqlx-session = { version = "0.4.0", features = ["pg"] }
serde = { version = "1.0", features = ["derive"] }
2023-10-21 11:39:58 +02:00
serde_json = "1.0.107"
2023-10-21 11:39:58 +02:00
sqlx = { version = "0.7.2", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
"uuid",
"offline",
"time",
"chrono",
] }
2023-10-21 11:39:58 +02:00
chrono = { version = "0.4.31", features = ["serde"] }
2023-10-21 11:39:58 +02:00
tokio = { version = "1.33.0", features = ["full"] }
2023-10-21 11:39:58 +02:00
uuid = { version = "1.5.0", features = ["v4", "fast-rng", "serde"] }
anyhow = "1.0.75"
dotenv = "0.15.0"
2023-10-21 11:39:58 +02:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
2023-10-21 11:39:58 +02:00
clap = { version = "4.4.6", features = ["derive", "env"] }
2023-10-21 11:39:58 +02:00
argon2 = { version = "0.5.2" }
rand_core = { version = "0.6.4" }
pretty_assertions = "1.4.0"
sealed_test = "1.0.0"