juniper/juniper_hyper/Cargo.toml
dependabot[bot] 03c3b65bbb
Upgrade reqwest crate from 0.11 to 0.12 version (#1249)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-03-22 16:47:22 +00:00

36 lines
1.3 KiB
TOML

[package]
name = "juniper_hyper"
version = "0.9.0"
edition = "2021"
rust-version = "1.73"
description = "`juniper` GraphQL integration with `hyper`."
license = "BSD-2-Clause"
authors = [
"Damir Vandic <info@dvic.io>",
"Kai Ren <tyranron@gmail.com>",
]
documentation = "https://docs.rs/juniper_hyper"
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_hyper"
repository = "https://github.com/graphql-rust/juniper"
readme = "README.md"
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
keywords = ["apollo", "graphql", "hyper", "juniper"]
exclude = ["/examples/", "/release.toml"]
[dependencies]
futures = "0.3.22"
http-body-util = "0.1"
hyper = { version = "1.0", features = ["server"] }
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
serde_json = "1.0.18"
tokio = "1.0"
url = "2.0"
[dev-dependencies]
hyper = { version = "1.0", features = ["http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
pretty_env_logger = "0.5"
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
tokio = { version = "1.0", features = ["macros", "net", "rt-multi-thread"] }