juniper/juniper_actix/Cargo.toml
dependabot[bot] 032ff3f4a6
Upgrade actix crate to 0.13 version (#1034)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
2022-03-14 12:46:52 +02:00

43 lines
1.1 KiB
TOML

[package]
name = "juniper_actix"
version = "0.5.0"
edition = "2018"
authors = ["Jordao Rosario <jordao.rosario01@gmail.com>"]
description = "Juniper GraphQL integration with Actix"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_actix"
repository = "https://github.com/graphql-rust/juniper"
[features]
subscriptions = ["juniper_graphql_ws", "tokio"]
[dependencies]
actix = "0.13"
actix-http = "3.0"
http = "0.2.4"
actix-web = "4.0"
actix-web-actors = "4.1.0"
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.3.0", path = "../juniper_graphql_ws", optional = true }
anyhow = "1.0"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.0", features = ["sync"], optional = true }
[dev-dependencies]
actix-rt = "2"
actix-cors = "0.6"
actix-identity = "0.4"
tokio = "1.0"
async-stream = "0.3"
actix-test = "=0.1.0-beta.13"
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
bytes = "1.0"
env_logger = "0.9"
log = "0.4"