2018-09-01 22:02:01 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_hyper"
|
2020-12-12 13:49:34 -06:00
|
|
|
version = "0.6.1"
|
2020-10-19 11:42:27 -05:00
|
|
|
edition = "2018"
|
2018-09-01 22:02:01 -05:00
|
|
|
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"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 11:42:27 -05:00
|
|
|
futures = "0.3.1"
|
2021-01-15 23:46:23 -06:00
|
|
|
juniper = { version = "0.15.2", path = "../juniper", default-features = false }
|
2020-10-19 11:42:27 -05:00
|
|
|
hyper = "0.13"
|
2018-09-01 22:02:01 -05:00
|
|
|
serde_json = "1.0"
|
2020-02-13 00:48:28 -06:00
|
|
|
tokio = "0.2"
|
2020-10-19 11:42:27 -05:00
|
|
|
url = "2"
|
2018-09-01 22:02:01 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-01-15 23:46:23 -06:00
|
|
|
juniper = { version = "0.15.2", path = "../juniper", features = ["expose-test-schema"] }
|
2020-07-17 01:06:08 -05:00
|
|
|
pretty_env_logger = "0.4"
|
2021-01-06 02:44:11 -06:00
|
|
|
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
|
2020-10-19 11:42:27 -05:00
|
|
|
tokio = { version = "0.2", features = ["macros"] }
|