juniper/juniper_hyper/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

30 lines
745 B
TOML

[package]
name = "juniper_hyper"
version = "0.5.2"
authors = ["Damir Vandic <info@dvic.io>"]
description = "Juniper GraphQL integration with Hyper"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper_hyper"
repository = "https://github.com/graphql-rust/juniper"
edition = "2018"
[dependencies]
serde_json = "1.0"
url = "2"
juniper = { version = "0.14.2", default-features = false, path = "../juniper"}
tokio = "0.2"
hyper = "0.13"
futures = "0.3.1"
[dev-dependencies]
pretty_env_logger = "0.4"
reqwest = { version = "0.10", features = ["blocking", "rustls-tls"] }
[dev-dependencies.juniper]
version = "0.14.2"
features = ["expose-test-schema"]
path = "../juniper"
[dev-dependencies.tokio]
version = "0.2"
features = ["macros"]