2019-08-21 12:07:30 +02: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]
|
2020-03-08 23:20:11 -07:00
|
|
|
juniper = { path = "../juniper" }
|
2020-02-04 09:57:47 +01:00
|
|
|
futures = "0.3.1"
|
2019-08-21 12:07:30 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
criterion = "0.2.11"
|
2020-01-21 23:37:45 -08:00
|
|
|
tokio = { version = "0.2.0", features = ["rt-threaded", "rt-core"] }
|