juniper/juniper_rocket_async/Cargo.toml
Filip Gospodinov 9dfd57198d
Eliminate tokio dependency in juniper_rocket_async (#920)
The `tokio` dependency is only required for tests and should
have been in the `dev-dependencies` section in `Cargo.toml`.

Since `rocket` already ships with a async test annotation
`tokio` can be removed completely.
2021-04-19 07:54:21 -10:00

21 lines
711 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.4", path = "../juniper", default-features = false }
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", default-features = false }
serde_json = "1.0.2"
[dev-dependencies]
juniper = { version = "0.15.4", path = "../juniper", features = ["expose-test-schema"] }