juniper/juniper_rocket/Cargo.toml

22 lines
661 B
TOML
Raw Normal View History

[package]
name = "juniper_rocket"
2021-07-08 02:04:03 -05:00
version = "0.8.0"
edition = "2018"
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]
futures = "0.3.1"
2021-07-08 02:01:56 -05:00
juniper = { version = "0.15.7", path = "../juniper", default-features = false }
rocket = { version = "0.5.0-rc.1", default-features = false }
serde_json = "1.0.2"
[dev-dependencies]
2021-07-08 02:01:56 -05:00
juniper = { version = "0.15.7", path = "../juniper", features = ["expose-test-schema"] }