2017-12-02 08:59:23 -06:00
|
|
|
[package]
|
|
|
|
name = "juniper_rocket"
|
2019-10-24 18:01:03 -05:00
|
|
|
version = "0.5.1"
|
2017-12-03 11:33:40 -06:00
|
|
|
authors = [
|
|
|
|
"Magnus Hallin <mhallin@fastmail.com>",
|
|
|
|
"Christoph Herzog <chris@theduke.at>",
|
|
|
|
]
|
2017-12-02 08:59:23 -06:00
|
|
|
description = "Juniper GraphQL integration with Rocket"
|
|
|
|
license = "BSD-2-Clause"
|
|
|
|
documentation = "https://docs.rs/juniper_rocket"
|
2017-12-03 06:12:45 -06:00
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2019-04-22 13:37:46 -05:00
|
|
|
edition = "2018"
|
2017-12-02 08:59:23 -06:00
|
|
|
|
2019-08-21 04:22:16 -05:00
|
|
|
[features]
|
2019-08-21 07:16:19 -05:00
|
|
|
async = [ "juniper/async" ]
|
2019-08-21 04:22:16 -05:00
|
|
|
|
2017-12-02 08:59:23 -06:00
|
|
|
[dependencies]
|
2017-12-03 08:14:23 -06:00
|
|
|
serde = { version = "1.0.2" }
|
2017-12-02 08:59:23 -06:00
|
|
|
serde_json = { version = "1.0.2" }
|
2018-06-07 19:44:30 -05:00
|
|
|
serde_derive = { version = "1.0.2" }
|
2019-10-24 17:57:16 -05:00
|
|
|
juniper = { version = "0.14.1", default-features = false, path = "../juniper"}
|
2017-12-02 09:09:08 -06:00
|
|
|
|
2019-11-12 05:33:12 -06:00
|
|
|
futures = { version = "=0.3.1", features = ["compat"] }
|
2019-08-15 10:06:31 -05:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "async" }
|
2019-10-10 00:14:45 -05:00
|
|
|
tokio = "=0.2.0-alpha.6"
|
2017-12-02 08:59:23 -06:00
|
|
|
|
2017-12-02 09:09:08 -06:00
|
|
|
[dev-dependencies.juniper]
|
2019-10-24 17:57:16 -05:00
|
|
|
version = "0.14.1"
|
2017-12-02 09:09:08 -06:00
|
|
|
features = ["expose-test-schema", "serde_json"]
|
|
|
|
path = "../juniper"
|