51 lines
1.3 KiB
TOML
51 lines
1.3 KiB
TOML
[package]
|
|
name = "juniper"
|
|
version = "0.14.2"
|
|
authors = [
|
|
"Magnus Hallin <mhallin@fastmail.com>",
|
|
"Christoph Herzog <chris@theduke.at>",
|
|
"Christian Legnitto <christian@legnitto.com>",
|
|
]
|
|
description = "GraphQL server library"
|
|
license = "BSD-2-Clause"
|
|
documentation = "https://docs.rs/juniper"
|
|
repository = "https://github.com/graphql-rust/juniper"
|
|
readme = "../README.md"
|
|
keywords = ["graphql", "server", "web", "rocket"]
|
|
categories = ["web-programming"]
|
|
edition = "2018"
|
|
|
|
[badges]
|
|
travis-ci = { repository = "graphql-rust/juniper" }
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|
|
path = "benches/bench.rs"
|
|
|
|
[features]
|
|
async = ["juniper_codegen/async", "futures"]
|
|
expose-test-schema = []
|
|
default = [
|
|
"chrono",
|
|
"url",
|
|
"uuid",
|
|
]
|
|
|
|
[dependencies]
|
|
juniper_codegen = { version = "0.14.2", path = "../juniper_codegen" }
|
|
|
|
chrono = { version = "0.4.0", optional = true }
|
|
fnv = "1.0.3"
|
|
futures = { version = "=0.3.1", optional = true }
|
|
indexmap = { version = "1.0.0", features = ["serde-1"] }
|
|
serde = { version = "1.0.8" }
|
|
serde_derive = { version = "1.0.2" }
|
|
serde_json = { version="1.0.2", optional = true }
|
|
url = { version = "2", optional = true }
|
|
uuid = { version = ">= 0.7, < 0.8", optional = true }
|
|
|
|
[dev-dependencies]
|
|
bencher = "0.1.2"
|
|
serde_json = { version = "1.0.2" }
|
|
tokio = "=0.2.0-alpha.6"
|