juniper/juniper_hyper/Cargo.toml
Christian Legnitto 00b111a1ff
Remove async feature gate (#554)
This still has the async / non-async split. Future diffs will get
rid of `GraphQLTypeAsync` and move everything into `GraphQLType`.
2020-03-08 23:20:11 -07:00

32 lines
No EOL
753 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 = "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.1" }
[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"]