juniper/Cargo.toml
2017-01-02 13:15:45 +01:00

33 lines
713 B
TOML

[package]
name = "juniper"
version = "0.6.0"
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
description = "GraphQL server library"
license = "BSD-2-Clause"
documentation = "http://mhallin.github.io/juniper"
repository = "https://github.com/mhallin/juniper"
readme = "README.md"
keywords = ["graphql", "server", "iron", "http", "web"]
[[bench]]
name = "bench"
harness = false
path = "benches/bench.rs"
[features]
default = []
nightly = []
iron-handlers = ["iron"]
expose-test-schema = []
[dependencies]
rustc-serialize = "^0.3.19"
iron = { version = "^0.4.0", optional = true }
[dev-dependencies]
iron = "^0.4.0"
router = "^0.2.0"
mount = "^0.2.1"
logger = "^0.1.0"
iron-test = "^0.4.0"
bencher = "^0.1.2"