2019-11-15 21:50:35 +01:00
|
|
|
[package]
|
2020-04-09 22:10:24 -10:00
|
|
|
name = "juniper_rocket_async"
|
2019-11-15 21:50:35 +01:00
|
|
|
version = "0.5.1"
|
2020-10-19 19:42:27 +03:00
|
|
|
edition = "2018"
|
2019-11-15 21:50:35 +01:00
|
|
|
authors = [
|
|
|
|
"Magnus Hallin <mhallin@fastmail.com>",
|
|
|
|
"Christoph Herzog <chris@theduke.at>",
|
|
|
|
]
|
|
|
|
description = "Juniper GraphQL integration with Rocket"
|
|
|
|
license = "BSD-2-Clause"
|
|
|
|
documentation = "https://docs.rs/juniper_rocket"
|
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-10-19 19:42:27 +03:00
|
|
|
futures = "0.3.1"
|
2020-12-09 19:19:43 -10:00
|
|
|
juniper = { version = "0.15.0", path = "../juniper", default-features = false }
|
2020-07-14 21:38:09 -10:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false }
|
2020-10-19 19:42:27 +03:00
|
|
|
serde_json = "1.0.2"
|
|
|
|
tokio = { version = "0.2", features = ["macros", "rt-core"] }
|
2019-11-15 21:50:35 +01:00
|
|
|
|
2020-10-19 19:42:27 +03:00
|
|
|
[dev-dependencies]
|
2020-12-09 19:19:43 -10:00
|
|
|
juniper = { version = "0.15.0", path = "../juniper", features = ["expose-test-schema"] }
|