juniper/juniper_rocket/Cargo.toml

31 lines
868 B
TOML
Raw Normal View History

[package]
name = "juniper_rocket"
2019-10-24 18:01:03 -05:00
version = "0.5.1"
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"
edition = "2018"
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
[dependencies]
2017-12-03 08:14:23 -06:00
serde = { version = "1.0.2" }
serde_json = { version = "1.0.2" }
serde_derive = { version = "1.0.2" }
2019-10-24 17:57:16 -05:00
juniper = { version = "0.14.1", default-features = false, path = "../juniper"}
futures = { version = "=0.3.1", features = ["compat"] }
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "async" }
tokio = "=0.2.0-alpha.6"
[dev-dependencies.juniper]
2019-10-24 17:57:16 -05:00
version = "0.14.1"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"