juniper/Cargo.toml

28 lines
626 B
TOML
Raw Normal View History

2016-09-11 11:41:29 -05:00
[package]
name = "juniper"
2016-12-05 15:23:00 -06:00
version = "0.5.3"
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"]
2016-09-11 11:41:29 -05:00
[features]
default = []
nightly = []
iron-handlers = ["iron"]
expose-test-schema = []
2016-09-11 11:41:29 -05:00
[dependencies]
rustc-serialize = "^0.3.19"
2016-09-11 11:41:29 -05:00
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"