juniper/juniper_benchmarks/Cargo.toml
2020-01-20 23:23:42 -08:00

22 lines
482 B
TOML

[package]
name = "juniper_benchmarks"
version = "0.1.0"
authors = ["Christoph Herzog <chris@theduke.at>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bench]]
name = "benchmark"
harness = false
[features]
async = ["juniper/async", "futures"]
[dependencies]
juniper = { path = "../juniper" }
futures = { version = "=0.3.1", optional = true }
[dev-dependencies]
criterion = "0.2.11"
tokio = "=0.2.0-alpha.6"