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>"]
|
2016-09-11 14:46:33 -05:00
|
|
|
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"]
|
2017-02-04 04:36:39 -06:00
|
|
|
categories = ["web-programming"]
|
2016-09-11 11:41:29 -05:00
|
|
|
|
2016-12-26 05:16:19 -06:00
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|
|
|
|
path = "benches/bench.rs"
|
|
|
|
|
2017-05-18 03:31:53 -05:00
|
|
|
[[example]]
|
|
|
|
name = "server"
|
|
|
|
required-features = ["iron-handlers", "expose-test-schema"]
|
|
|
|
|
2016-09-11 11:41:29 -05:00
|
|
|
[features]
|
|
|
|
nightly = []
|
2017-06-14 02:02:56 -05:00
|
|
|
iron-handlers = ["iron", "serde_json", "urlencoded"]
|
2016-09-18 09:30:15 -05:00
|
|
|
expose-test-schema = []
|
2016-09-11 11:41:29 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2017-06-14 02:02:56 -05:00
|
|
|
serde = { version = "^0.9.1" }
|
|
|
|
serde_derive = {version="^0.9.1" }
|
|
|
|
|
2017-01-24 23:43:39 -06:00
|
|
|
iron = { version = "^0.5.1", optional = true }
|
2017-04-30 21:07:36 -05:00
|
|
|
serde_json = {version ="^0.9.1", optional = true }
|
2017-05-14 20:30:49 -05:00
|
|
|
urlencoded = {version="0.5", optional=true}
|
2017-04-30 21:07:36 -05:00
|
|
|
|
2016-09-11 11:41:29 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-01-24 23:43:39 -06:00
|
|
|
iron = "^0.5.1"
|
|
|
|
router = "^0.5.0"
|
|
|
|
mount = "^0.3.0"
|
|
|
|
logger = "^0.3.0"
|
|
|
|
iron-test = "^0.5.0"
|
2016-12-26 05:16:19 -06:00
|
|
|
bencher = "^0.1.2"
|