juniper/Cargo.toml

36 lines
861 B
TOML
Raw Normal View History

2016-09-11 11:41:29 -05:00
[package]
name = "juniper"
2017-02-26 05:58:52 -06:00
version = "0.7.0"
2016-09-11 11:41:29 -05:00
authors = ["Magnus Hallin <mhallin@fastmail.com>"]
description = "GraphQL server library"
license = "BSD-2-Clause"
2016-09-11 15:03:50 -05:00
documentation = "http://mhallin.github.io/juniper"
repository = "https://github.com/mhallin/juniper"
readme = "README.md"
keywords = ["graphql", "server", "iron", "http", "web"]
categories = ["web-programming"]
2016-09-11 11:41:29 -05:00
[[bench]]
name = "bench"
harness = false
path = "benches/bench.rs"
2016-09-11 11:41:29 -05:00
[features]
default = ["rustc-serialize"]
2016-09-11 11:41:29 -05:00
nightly = []
iron-handlers = ["iron", "rustc-serialize"]
expose-test-schema = []
2016-09-11 11:41:29 -05:00
[dependencies]
rustc-serialize = { version = "^0.3.19", optional = true }
iron = { version = "^0.5.1", optional = true }
serde = { version = "^0.9.1", optional = true }
2016-09-11 11:41:29 -05:00
[dev-dependencies]
iron = "^0.5.1"
router = "^0.5.0"
mount = "^0.3.0"
logger = "^0.3.0"
iron-test = "^0.5.0"
bencher = "^0.1.2"