5c3fb8e913
Rocket requires nightly, but on nightly 2017-12-13 and after the version of Rocket juniper's integration was using wouldn't build. This is solved by updating Rocket to `0.3.4` which according to the [changelog](https://github.com/SergioBenitez/Rocket/blob/v0.3.4/CHANGELOG.md#version-034-dec-14-2017): "Codegen was updated for 2017-12-13 nightly."
25 lines
691 B
TOML
25 lines
691 B
TOML
[package]
|
|
name = "juniper_rocket"
|
|
version = "0.1.1"
|
|
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]
|
|
serde = { version = "1.0.2" }
|
|
serde_derive = {version="1.0.2" }
|
|
serde_json = { version = "1.0.2" }
|
|
juniper = { version = "0.9.1" , path = "../juniper"}
|
|
|
|
rocket = { version = "0.3.4" }
|
|
rocket_codegen = { version = "0.3.4" }
|
|
|
|
[dev-dependencies.juniper]
|
|
version = "0.9.1"
|
|
features = ["expose-test-schema", "serde_json"]
|
|
path = "../juniper"
|