como/como_infrastructure/Cargo.toml

37 lines
1.1 KiB
TOML
Raw Normal View History

2022-10-03 23:00:31 +02:00
[package]
name = "como_infrastructure"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
como_core = { path = "../como_core" }
como_domain = { path = "../como_domain" }
2022-11-15 18:01:41 +01:00
async-graphql = "4.0.16"
2022-10-03 23:00:31 +02:00
async-graphql-axum = "*"
2022-11-15 18:01:41 +01:00
axum = "0.5.17"
2022-10-03 23:00:31 +02:00
axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
axum-sessions = { version = "*" }
serde = { version = "1.0", features = ["derive"] }
2022-11-15 18:01:41 +01:00
serde_json = "1.0.87"
tokio = { version = "1.21.2", features = ["full"] }
uuid = { version = "1.2.2", features = ["v4", "fast-rng"] }
2022-10-03 23:00:31 +02:00
sqlx = { version = "0.6", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
"uuid",
"offline",
] }
2022-11-15 18:01:41 +01:00
anyhow = "1.0.66"
2022-10-03 23:00:31 +02:00
dotenv = "0.15.0"
2022-11-15 18:01:41 +01:00
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
2022-10-03 23:00:31 +02:00
tower-http = { version = "0.3.4", features = ["full"] }
argon2 = "0.4"
rand_core = { version = "0.6", features = ["std"] }
cookie = { version = "0.16", features = ["secure", "percent-encode"] }
2022-11-15 18:01:41 +01:00
clap = { version = "4", features = ["derive", "env"] }