2018-09-01 22:02:01 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_hyper"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.9.0-dev"
|
2020-10-19 11:42:27 -05:00
|
|
|
edition = "2018"
|
2022-04-08 09:44:50 -05:00
|
|
|
description = "`juniper` GraphQL integration with `hyper`."
|
2018-09-01 22:02:01 -05:00
|
|
|
license = "BSD-2-Clause"
|
2022-04-08 09:44:50 -05:00
|
|
|
authors = ["Damir Vandic <info@dvic.io>"]
|
2018-09-01 22:02:01 -05:00
|
|
|
documentation = "https://docs.rs/juniper_hyper"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_hyper"
|
2018-09-01 22:02:01 -05:00
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2022-04-08 09:44:50 -05:00
|
|
|
readme = "README.md"
|
|
|
|
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
|
|
|
|
keywords = ["apollo", "graphql", "hyper", "juniper"]
|
|
|
|
exclude = ["/examples/", "/release.toml"]
|
2018-09-01 22:02:01 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 11:42:27 -05:00
|
|
|
futures = "0.3.1"
|
2021-08-11 09:41:49 -05:00
|
|
|
hyper = { version = "0.14", features = ["server", "runtime"] }
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2018-09-01 22:02:01 -05:00
|
|
|
serde_json = "1.0"
|
2021-08-11 09:41:49 -05:00
|
|
|
tokio = "1.0"
|
|
|
|
url = "2.0"
|
2018-09-01 22:02:01 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", 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"] }
|
2021-08-11 09:41:49 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|