2018-09-01 22:02:01 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_hyper"
|
2024-03-20 13:46:18 -05:00
|
|
|
version = "0.9.0"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
2024-08-12 16:31:39 -05:00
|
|
|
rust-version = "1.75"
|
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"
|
2024-01-02 08:59:19 -06:00
|
|
|
authors = [
|
|
|
|
"Damir Vandic <info@dvic.io>",
|
|
|
|
"Kai Ren <tyranron@gmail.com>",
|
|
|
|
]
|
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]
|
2022-08-29 09:10:40 -05:00
|
|
|
futures = "0.3.22"
|
2023-11-17 07:04:37 -06:00
|
|
|
http-body-util = "0.1"
|
|
|
|
hyper = { version = "1.0", features = ["server"] }
|
2024-04-04 07:50:56 -05:00
|
|
|
juniper = { version = "0.16", path = "../juniper", default-features = false }
|
2022-10-21 11:07:17 -05:00
|
|
|
serde_json = "1.0.18"
|
2021-08-11 09:41:49 -05:00
|
|
|
tokio = "1.0"
|
|
|
|
url = "2.0"
|
2018-09-01 22:02:01 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-11-17 07:04:37 -06:00
|
|
|
hyper = { version = "1.0", features = ["http1"] }
|
|
|
|
hyper-util = { version = "0.1", features = ["tokio"] }
|
2024-04-04 07:50:56 -05:00
|
|
|
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
|
2023-11-17 07:04:37 -06:00
|
|
|
log = "0.4"
|
2023-07-07 05:58:23 -05:00
|
|
|
pretty_env_logger = "0.5"
|
2024-03-22 11:47:22 -05:00
|
|
|
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
|
2023-11-17 07:04:37 -06:00
|
|
|
tokio = { version = "1.0", features = ["macros", "net", "rt-multi-thread"] }
|