juniper/juniper_rocket/Cargo.toml

27 lines
820 B
TOML
Raw Normal View History

[package]
name = "juniper_rocket"
2019-07-29 10:11:42 -05:00
version = "0.4.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"
[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-07-29 10:08:05 -05:00
juniper = { version = "0.13.1" , default-features = false, path = "../juniper"}
futures-preview = { version = "0.3.0-alpha.18", features = ["compat"] }
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "async" }
[dev-dependencies.juniper]
2019-07-29 10:08:05 -05:00
version = "0.13.1"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"