2019-08-21 05:07:30 -05:00
|
|
|
[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
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
juniper = { path = "../juniper", features = ["async"] }
|
2019-11-12 05:33:12 -06:00
|
|
|
futures = "=0.3.1"
|
2019-08-21 05:07:30 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2.11"
|
2019-10-10 00:14:45 -05:00
|
|
|
tokio = "=0.2.0-alpha.6"
|