29 lines
912 B
TOML
29 lines
912 B
TOML
[package]
|
|
name = "juniper_rocket"
|
|
version = "0.5.0"
|
|
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"
|
|
|
|
[features]
|
|
async = [ "juniper/async", "futures03" ]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.2" }
|
|
serde_json = { version = "1.0.2" }
|
|
serde_derive = { version = "1.0.2" }
|
|
juniper = { version = "0.14.0", default-features = false, path = "../juniper"}
|
|
|
|
futures03 = { version = "0.3.0-alpha.18", optional = true, package = "futures-preview", features = ["compat"] }
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "async" }
|
|
|
|
[dev-dependencies.juniper]
|
|
version = "0.14.0"
|
|
features = ["expose-test-schema", "serde_json"]
|
|
path = "../juniper"
|