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
|
|
|
|
|
|
|
[dependencies]
|
2018-10-27 20:45:47 -05:00
|
|
|
warp = "0.1.8"
|
2019-12-16 23:53:51 -06:00
|
|
|
juniper = { version = "0.14.2", path = "../juniper", default-features = false }
|
2018-09-07 16:28:56 -05:00
|
|
|
serde_json = "1.0.24"
|
|
|
|
serde_derive = "1.0.75"
|
|
|
|
failure = "0.1.2"
|
2019-11-12 05:33:12 -06:00
|
|
|
# TODO: rebase juniper_warp to futures 3 once warp supports it
|
|
|
|
futures = "0.1.29"
|
2018-09-07 16:28:56 -05:00
|
|
|
serde = "1.0.75"
|
2018-10-20 02:59:35 -05:00
|
|
|
tokio-threadpool = "0.1.7"
|
2018-09-07 16:28:56 -05:00
|
|
|
|
2020-02-04 02:57:47 -06:00
|
|
|
futures03 = { version = "0.3.1", optional = true, package = "futures", features = ["compat"] }
|
2019-08-18 14:36:44 -05:00
|
|
|
|
2018-09-07 16:28:56 -05:00
|
|
|
[dev-dependencies]
|
2019-12-16 23:53:51 -06:00
|
|
|
juniper = { version = "0.14.2", path = "../juniper", features = ["expose-test-schema", "serde_json"] }
|
2018-12-08 21:27:23 -06:00
|
|
|
env_logger = "0.5.11"
|
|
|
|
log = "0.4.3"
|
2018-09-07 16:28:56 -05:00
|
|
|
percent-encoding = "1.0"
|