async-graphql/benchmark/Cargo.toml

30 lines
584 B
TOML
Raw Normal View History

2020-06-01 16:05:37 +00:00
[package]
name = "graphql-benchmark"
version = "2.0.3"
2020-09-18 12:36:05 +00:00
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
2020-06-01 16:05:37 +00:00
edition = "2018"
2020-06-02 12:57:07 +00:00
[dependencies]
async-std = { version = "1.6.5", features = ["attributes"] }
futures = "0.3.6"
2020-06-02 12:57:07 +00:00
serde_json = "*"
async-graphql-parser = { path = "../parser" }
2020-06-02 12:57:07 +00:00
async-graphql = { path = ".." }
2020-06-02 14:51:32 +00:00
jemallocator = { version = "0.3.2", optional = true }
2020-06-02 12:57:07 +00:00
2020-06-01 16:05:37 +00:00
[dev-dependencies]
criterion = "0.3"
simple = { path = "simple" }
2020-06-02 12:57:07 +00:00
chat = { path = "chat" }
2020-06-01 16:05:37 +00:00
2020-06-02 14:51:32 +00:00
[features]
jemalloc = ["jemallocator"]
2020-06-01 16:05:37 +00:00
[[bench]]
name = "simple"
harness = false
2020-06-02 12:57:07 +00:00
[[bench]]
name = "chat"
harness = false