juniper/Cargo.toml

42 lines
995 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"
[[example]]
name = "server"
required-features = ["iron-handlers", "expose-test-schema"]
2016-09-11 11:41:29 -05:00
[features]
nightly = []
iron-handlers = ["iron", "serde_json", "urlencoded"]
expose-test-schema = []
2016-09-11 11:41:29 -05:00
[dependencies]
serde = { version = "^1.0.8" }
serde_derive = {version="^1.0.8" }
iron = { version = "^0.5.1", optional = true }
serde_json = { version = "^1.0.2", optional = true }
urlencoded = { version = "^0.5.0", 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"