axum_juniper/Cargo.toml

31 lines
824 B
TOML
Raw Normal View History

2024-05-24 14:25:46 +02:00
[package]
name = "axum-juniper"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.37.0", features = [
"macros",
"net",
"rt-multi-thread",
"time",
] }
tokio-stream = "0.1.15"
r2d2 = { version = "0.8.10" }
juniper = { version = "0.16.1" }
axum = { version = "0.7.5", features = ["json", "macros", "tokio", "tracing"] }
juniper_axum = { version = "0.1.0", features = ["subscriptions"] }
diesel = { version = "2.1.6", features = ["postgres", "r2d2"] }
dotenvy = "0.15.7"
serde = "1.0.202"
serde_json = "1.0.117"
futures = "0.3.30"
anyhow = "1.0.86"
juniper_graphql_ws = { version = "0.4.0", features = ["graphql-transport-ws"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[dev-dependencies]