juniper/juniper_rocket/Cargo.toml
Eric Dattore cb00a7b2bc Update juniper_rocket for Rocket 0.4 (#277)
Path handling changed in Rocket 0.4 and this commit updates the way
those paths are handled. It adds an implementation of the
`FromFormValue` trait to the `GraphQLRequest` object. It also changes
the documentation to use the multi-segment query string syntax.

All existing tests pass as expected.
2018-12-10 17:45:22 -07:00

24 lines
690 B
TOML

[package]
name = "juniper_rocket"
version = "0.1.3"
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_json = { version = "1.0.2" }
serde_derive = { version = "1.0.2" }
juniper = { version = ">=0.9, 0.10.0" , default-features = false, path = "../juniper"}
rocket = { version = "0.4.0" }
[dev-dependencies.juniper]
version = "0.10.0"
features = ["expose-test-schema", "serde_json"]
path = "../juniper"