async-graphql/benchmark/Cargo.toml
2020-10-02 15:00:59 +08:00

30 lines
593 B
TOML

[package]
name = "graphql-benchmark"
version = "2.0.0-alpha.23"
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
edition = "2018"
[dependencies]
async-std = { version = "1.5.0", features = ["attributes"] }
futures = "0.3.4"
serde_json = "*"
async-graphql-parser = { path = "../parser" }
async-graphql = { path = ".." }
jemallocator = { version = "0.3.2", optional = true }
[dev-dependencies]
criterion = "0.3"
simple = { path = "simple" }
chat = { path = "chat" }
[features]
jemalloc = ["jemallocator"]
[[bench]]
name = "simple"
harness = false
[[bench]]
name = "chat"
harness = false