juniper/juniper_benchmarks/Cargo.toml
Christian Legnitto 00b111a1ff
Remove async feature gate (#554)
This still has the async / non-async split. Future diffs will get
rid of `GraphQLTypeAsync` and move everything into `GraphQLType`.
2020-03-08 23:20:11 -07:00

18 lines
445 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" }
futures = "0.3.1"
[dev-dependencies]
criterion = "0.2.11"
tokio = { version = "0.2.0", features = ["rt-threaded", "rt-core"] }