juniper/juniper_hyper/Cargo.toml
Genna Wingert 4ccb129fa2
Update juniper_hyper to hyper 0.13 and add async resolution (#505)
This involves updating to futures 0.3, tokio 0.2 stable
2020-02-12 23:48:28 -07:00

35 lines
No EOL
817 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"
[features]
async = ["juniper/async", "futures"]
[dependencies]
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
url = "2"
juniper = { version = "0.14.2", default-features = false, path = "../juniper"}
tokio = "0.2"
hyper = "0.13"
futures = { version = "0.3", optional = true }
[dev-dependencies]
pretty_env_logger = "0.2"
reqwest = "0.9"
[dev-dependencies.juniper]
version = "0.14.2"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"
[dev-dependencies.tokio]
version = "0.2"
features = ["macros"]