juniper/benches/Cargo.toml
tyranron ef7a7e8229
Upgrade to 2021 Rust edition
- set 1.62 Rust as MSRV
- use new fmt syntax where possible
- refactor `.to_owned()`, `.to_string()` and `.into()` usage
- rename `IntoResolvable::into()` as `IntoResolvable::into_resolvable()` to disambiguate with `Into::into()`
- use `#[derive(Default)]` for enums where possible
- use `bool::then_some()` where possible
2022-07-13 15:20:10 +02:00

18 lines
349 B
TOML

[package]
name = "juniper_benchmarks"
version = "0.0.0"
edition = "2021"
authors = ["Christoph Herzog <chris@theduke.at>"]
publish = false
[dependencies]
futures = "0.3"
juniper = { path = "../juniper" }
[dev-dependencies]
criterion = "0.3"
tokio = { version = "1.0", features = ["rt-multi-thread"] }
[[bench]]
name = "benchmark"
harness = false