juniper/tests/codegen/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

14 lines
287 B
TOML

[package]
name = "juniper_codegen_tests"
version = "0.0.0"
edition = "2021"
publish = false
[dependencies]
futures = "0.3.1"
juniper = { path = "../../juniper" }
[dev-dependencies]
serde_json = "1.0"
tokio = { version = "1.0", features = ["rt", "time", "macros"] }
trybuild = "1.0.25"