juniper/juniper_iron/Cargo.toml
Mihai Dinculescu 45c16acc6e
Actix subscriptions tests (#736)
* Actix subscriptions tests

* Use LocalBoxFuture instead of async-trait

* expose-test-schema already includes serde_json

* Add anyhow to juniper dev-dependencies

* The HTTP test helpers are not needed for juniper tests

* juniper_actix does not need tokio in dev-dependencies

Co-authored-by: Christian Legnitto <LegNeato@users.noreply.github.com>
2020-08-18 21:08:53 -10:00

33 lines
746 B
TOML

[package]
name = "juniper_iron"
version = "0.6.2"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "Iron integration for juniper"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_iron"
repository = "https://github.com/graphql-rust/juniper"
edition = "2018"
[dependencies]
serde_json = { version = "1.0.2" }
juniper = { version = "0.14.2", path = "../juniper" }
futures = "0.3.1"
urlencoded = { version = ">= 0.5, < 0.7" }
iron = ">= 0.5, < 0.7"
[dev-dependencies]
iron-test = "0.6"
router = "0.6"
mount = "0.4"
logger = "0.4"
url = "2"
percent-encoding = "2"
[dev-dependencies.juniper]
version = "0.14.2"
features = ["expose-test-schema"]
path = "../juniper"