juniper/juniper_codegen/Cargo.toml
ilslv 847d09fb5e
Support @specifiedBy(url: "...") directive via specified_by_url attribute argument in #[graphql_scalar] and #[derive(GraphQLScalarValue)] macros (#1003, #1000)
- support `isRepeatable` field on directives
- support `__Schema.description`, `__Type.specifiedByURL` and `__Directive.isRepeatable` fields in introspection
2021-12-20 13:36:27 +02:00

30 lines
755 B
TOML

[package]
name = "juniper_codegen"
version = "0.15.7"
edition = "2018"
authors = [
"Magnus Hallin <mhallin@fastmail.com>",
"Christoph Herzog <chris@theduke.at>",
]
description = "Internal custom derive trait for Juniper GraphQL"
license = "BSD-2-Clause"
documentation = "https://docs.rs/juniper"
repository = "https://github.com/graphql-rust/juniper"
[badges]
travis-ci = { repository = "graphql-rust/juniper" }
[lib]
proc-macro = true
[dependencies]
proc-macro-error = "1.0.2"
proc-macro2 = "1.0.1"
quote = "1.0.3"
syn = { version = "1.0.60", features = ["extra-traits", "full", "parsing"], default-features = false }
url = "2.0"
[dev-dependencies]
derive_more = "0.99.7"
futures = "0.3"
juniper = { version = "0.15.7", path = "../juniper" }