20 lines
637 B
TOML
20 lines
637 B
TOML
[package]
|
|
name = "juniper_rocket"
|
|
version = "0.6.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]
|
|
juniper = { version = "0.15.1", path = "../juniper", default-features = false}
|
|
rocket = { version = "0.4.2", default-features = false }
|
|
serde_json = "1.0.2"
|
|
|
|
[dev-dependencies]
|
|
juniper = { version = "0.15.1", path = "../juniper", features = ["expose-test-schema"] }
|