como/Cargo.toml

54 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/*",
"ci"
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/" }
2024-03-11 17:00:13 +01:00
async-trait = "0.1.77"
async-graphql = { version = "7.0.2", features = ["uuid"] }
async-graphql-axum = "7.0.2"
2024-03-11 17:00:13 +01:00
axum = { version = "0.7.4", features = ["headers", "macros"] }
axum-extra = { version = "0.9.2", 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"] }
2024-03-11 17:00:13 +01:00
serde_json = "1.0.114"
2024-03-11 17:00:13 +01:00
sqlx = { version = "0.7.3", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
"uuid",
"offline",
"time",
"chrono",
] }
2024-03-11 17:00:13 +01:00
chrono = { version = "0.4.35", features = ["serde"] }
2024-03-11 17:00:13 +01:00
tokio = { version = "1.36.0", features = ["full"] }
2024-03-11 17:00:13 +01:00
uuid = { version = "1.7.0", features = ["v4", "fast-rng", "serde"] }
anyhow = "1.0.80"
dotenv = "0.15.0"
2024-03-11 17:00:13 +01:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
clap = { version = "4.5.2", features = ["derive", "env"] }
2024-03-11 17:00:13 +01:00
argon2 = { version = "0.5.3" }
rand_core = { version = "0.6.4" }
pretty_assertions = "1.4.0"
sealed_test = "1.0.0"