619a2e57f9
* Added juniper_iron crate * Fixed up juniper_rocket crate * Updated juniper/Cargo.toml * Updated docs (readme, module docs) * Export http integrator tests with export-test-schema feature * Update CI tests (Use cargo-make ) * Format parts of the code base
24 lines
818 B
TOML
24 lines
818 B
TOML
[package]
|
|
name = "juniper_rocket"
|
|
version = "0.0.1"
|
|
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
|
|
description = "Juniper GraphQL integration with Rocket"
|
|
license = "BSD-2-Clause"
|
|
documentation = "https://docs.rs/juniper_rocket"
|
|
repository = "https://github.com/mhallin/juniper"
|
|
|
|
[dependencies]
|
|
serde = { version = "^1.0.8" }
|
|
serde_derive = {version="^1.0.8" }
|
|
serde_json = { version = "^1.0.2" }
|
|
rocket = { version = "^0.3.0" }
|
|
rocket_codegen = { version = "^0.3.0" }
|
|
juniper = { version = "0.8.1", path = "../juniper" }
|
|
juniper_codegen = { version = "0.8.1", path = "../juniper_codegen" }
|
|
|
|
[badges]
|
|
travis-ci = { repository = "mhallin/juniper" }
|
|
appveyor = { repository = "mhallin/juniper" }
|
|
|
|
[dev-dependencies]
|
|
juniper = { version = "0.8.1", path = "../juniper", features=["expose-test-schema", "serde_json"] }
|