2017-12-02 08:59:23 -06:00
|
|
|
[package]
|
|
|
|
name = "juniper_rocket"
|
2022-04-08 09:44:50 -05:00
|
|
|
version = "0.9.0-dev"
|
2020-10-19 11:42:27 -05:00
|
|
|
edition = "2018"
|
2022-04-08 09:44:50 -05:00
|
|
|
description = "`juniper` GraphQL integration with `rocket`."
|
|
|
|
license = "BSD-2-Clause"
|
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
|
|
|
documentation = "https://docs.rs/juniper_rocket"
|
2022-04-08 09:44:50 -05:00
|
|
|
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_rocket"
|
2017-12-03 06:12:45 -06: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", "rocket"]
|
|
|
|
exclude = ["/examples/", "/tests/", "/release.toml"]
|
2017-12-02 08:59:23 -06:00
|
|
|
|
|
|
|
[dependencies]
|
2021-07-07 11:26:22 -05:00
|
|
|
futures = "0.3.1"
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", default-features = false }
|
2021-07-07 11:26:22 -05:00
|
|
|
rocket = { version = "0.5.0-rc.1", default-features = false }
|
2020-10-19 11:42:27 -05:00
|
|
|
serde_json = "1.0.2"
|
2017-12-02 08:59:23 -06:00
|
|
|
|
2020-10-19 11:42:27 -05:00
|
|
|
[dev-dependencies]
|
2022-02-02 12:08:41 -06:00
|
|
|
juniper = { version = "0.16.0-dev", path = "../juniper", features = ["expose-test-schema"] }
|