2018-09-07 16:28:56 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_warp"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.8.0-dev"
|
2022-07-13 05:30:51 -05:00
|
|
|
edition = "2021"
|
2022-12-19 02:31:23 -06:00
|
|
|
rust-version = "1.65"
|
2022-04-08 09:44:50 -05:00
|
|
|
description = "`juniper` GraphQL integration with `warp`."
|
2018-09-13 11:32:21 -05:00
|
|
|
license = "BSD-2-Clause"
|
2022-04-08 09:44:50 -05:00
|
|
|
authors = ["Tom Houlé <tom@tomhoule.com>"]
|
2018-09-07 16:28:56 -05:00
|
|
|
documentation = "https://docs.rs/juniper_warp"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_warp"
|
2018-09-07 16:28:56 -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", "juniper", "warp", "websocket"]
|
|
|
|
exclude = ["/examples/", "/release.toml"]
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
2018-09-07 16:28:56 -05:00
|
|
|
|
2020-03-18 22:31:36 -05:00
|
|
|
[features]
|
2023-08-24 20:02:32 -05:00
|
|
|
subscriptions = ["dep:juniper_graphql_ws", "dep:juniper_graphql_transport_ws", "warp/websocket"]
|
2020-03-18 22:31:36 -05:00
|
|
|
|
2018-09-07 16:28:56 -05:00
|
|
|
[dependencies]
|
2022-10-21 11:07:17 -05:00
|
|
|
anyhow = "1.0.47"
|
2022-08-29 09:10:40 -05:00
|
|
|
futures = "0.3.22"
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2022-04-08 09:44:50 -05:00
|
|
|
juniper_graphql_ws = { version = "0.4.0-dev", path = "../juniper_graphql_ws", optional = true }
|
2023-08-24 20:02:32 -05:00
|
|
|
juniper_graphql_transport_ws = { version = "0.4.0-dev", path = "../juniper_graphql_transport_ws", optional = true }
|
2022-10-21 11:07:17 -05:00
|
|
|
serde = { version = "1.0.122", features = ["derive"] }
|
|
|
|
serde_json = "1.0.18"
|
2020-10-19 11:42:27 -05:00
|
|
|
thiserror = "1.0"
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = { version = "1.0", features = ["rt-multi-thread"] }
|
2022-10-21 11:07:17 -05:00
|
|
|
warp = { version = "0.3.2", default-features = false }
|
|
|
|
|
|
|
|
# Fixes for MSRV check.
|
|
|
|
# TODO: Try remove on upgrade of `warp` crate.
|
|
|
|
headers = "0.3.8"
|
2019-08-18 14:36:44 -05:00
|
|
|
|
2018-09-07 16:28:56 -05:00
|
|
|
[dev-dependencies]
|
2022-11-28 04:13:09 -06:00
|
|
|
env_logger = "0.10"
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|
2020-10-19 11:42:27 -05:00
|
|
|
log = "0.4"
|
|
|
|
percent-encoding = "2.1"
|
2022-04-08 09:44:50 -05:00
|
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
|
|
|
url = "2.0"
|