2018-09-07 16:28:56 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_warp"
|
2019-12-16 23:57:17 -06:00
|
|
|
version = "0.5.2"
|
2018-09-07 16:28:56 -05:00
|
|
|
authors = ["Tom Houlé <tom@tomhoule.com>"]
|
|
|
|
description = "Juniper GraphQL integration with Warp"
|
2018-09-13 11:32:21 -05:00
|
|
|
license = "BSD-2-Clause"
|
2018-09-07 16:28:56 -05:00
|
|
|
documentation = "https://docs.rs/juniper_warp"
|
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2019-04-22 13:37:46 -05:00
|
|
|
edition = "2018"
|
2018-09-07 16:28:56 -05:00
|
|
|
|
2020-03-18 22:31:36 -05:00
|
|
|
[features]
|
2020-07-29 03:23:44 -05:00
|
|
|
subscriptions = ["juniper_graphql_ws"]
|
2020-03-18 22:31:36 -05:00
|
|
|
|
2018-09-07 16:28:56 -05:00
|
|
|
[dependencies]
|
2020-05-08 11:00:49 -05:00
|
|
|
bytes = "0.5"
|
2020-07-11 03:02:32 -05:00
|
|
|
anyhow = "1.0"
|
|
|
|
thiserror = "1.0"
|
2020-04-08 20:40:22 -05:00
|
|
|
futures = "0.3.1"
|
2019-12-16 23:53:51 -06:00
|
|
|
juniper = { version = "0.14.2", path = "../juniper", default-features = false }
|
2020-07-29 03:23:44 -05:00
|
|
|
juniper_graphql_ws = { path = "../juniper_graphql_ws", optional = true }
|
2020-04-28 11:39:35 -05:00
|
|
|
serde = { version = "1.0.75", features = ["derive"] }
|
2018-09-07 16:28:56 -05:00
|
|
|
serde_json = "1.0.24"
|
2020-05-08 11:00:49 -05:00
|
|
|
tokio = { version = "0.2", features = ["blocking", "rt-core"] }
|
|
|
|
warp = "0.2"
|
2019-08-18 14:36:44 -05:00
|
|
|
|
2018-09-07 16:28:56 -05:00
|
|
|
[dev-dependencies]
|
2020-07-17 01:06:39 -05:00
|
|
|
env_logger = "0.7.1"
|
2020-05-08 11:00:49 -05:00
|
|
|
juniper = { version = "0.14.2", path = "../juniper", features = ["expose-test-schema", "serde_json"] }
|
2018-12-08 21:27:23 -06:00
|
|
|
log = "0.4.3"
|
2020-07-24 22:27:38 -05:00
|
|
|
percent-encoding = "2"
|
2020-05-08 11:00:49 -05:00
|
|
|
tokio = { version = "0.2", features = ["blocking", "macros", "rt-core"] }
|
2020-07-24 22:27:38 -05:00
|
|
|
url = "2"
|