059e9aabee
* Update for the latest Rocket master * Run rustfmt * Update tokio Version * Improve Error Test Helper Function * Improve Code Readability
22 lines
766 B
TOML
22 lines
766 B
TOML
[package]
|
|
name = "juniper_rocket_async"
|
|
version = "0.5.1"
|
|
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"
|
|
juniper = { version = "0.15.3", path = "../juniper", default-features = false }
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false }
|
|
serde_json = "1.0.2"
|
|
tokio = { version = "1", features = ["macros", "rt"] }
|
|
|
|
[dev-dependencies]
|
|
juniper = { version = "0.15.3", path = "../juniper", features = ["expose-test-schema"] }
|