20 lines
441 B
TOML
20 lines
441 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
|
||
|
|
||
|
[dependencies]
|
||
|
juniper = { path = "../juniper", features = ["async"] }
|
||
|
futures-preview = "=0.3.0-alpha.19"
|
||
|
|
||
|
[dev-dependencies]
|
||
|
criterion = "0.2.11"
|
||
|
tokio = "=0.2.0-alpha.6"
|