juniper/juniper_codegen/Cargo.toml
dependabot[bot] 782eccba47
Upgrade syn crate to 2.0 version (#1157)
- replace `proc-macro-error` crate with simplified `common::diagnostic::pollyfill`
- migrate `juniper_codegen_tests` to stable Rust

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <tyranron@gmail.com>
2023-11-01 19:00:05 +01:00

34 lines
941 B
TOML

[package]
name = "juniper_codegen"
version = "0.16.0-dev"
edition = "2021"
rust-version = "1.73"
description = "Code generation for `juniper` crate."
license = "BSD-2-Clause"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
"Ilya Solovyiov <ilya.solovyiov@gmail.com>",
"Kai Ren <tyranron@gmail.com>",
]
documentation = "https://docs.rs/juniper-codegen"
homepage = "https://github.com/graphql-rust/juniper/tree/master/juniper_codegen"
repository = "https://github.com/graphql-rust/juniper"
readme = "README.md"
keywords = ["codegen", "graphql", "juniper", "macros"]
exclude = ["/release.toml"]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.4"
quote = "1.0.9"
syn = { version = "2.0", features = ["extra-traits", "full", "visit", "visit-mut"] }
url = "2.0"
[dev-dependencies]
derive_more = "0.99.8"
futures = "0.3.22"
juniper = { path = "../juniper" }
serde = "1.0.122"