a3fda7363d
- preserve and reuse defined impl blocks in #[graphql_object] and #[graphql_subscription] macros expansion - allow renaming `ScalarValue` type parameter in expanded code via `scalar = S: ScalarValue` syntax Additionally: - rename `rename` attribute's argument to `rename_all` - support `rename_all` in #[graphql_interface] macro
23 lines
790 B
TOML
23 lines
790 B
TOML
[package]
|
|
name = "juniper_hyper"
|
|
version = "0.8.0"
|
|
edition = "2018"
|
|
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"
|
|
|
|
[dependencies]
|
|
futures = "0.3.1"
|
|
juniper = { version = "0.15.7", path = "../juniper", default-features = false }
|
|
hyper = { version = "0.14", features = ["server", "runtime"] }
|
|
serde_json = "1.0"
|
|
tokio = "1.0"
|
|
url = "2.0"
|
|
|
|
[dev-dependencies]
|
|
juniper = { version = "0.15.7", path = "../juniper", features = ["expose-test-schema"] }
|
|
pretty_env_logger = "0.4"
|
|
reqwest = { version = "0.11", features = ["blocking", "rustls-tls"] }
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|