juniper/juniper_codegen/Cargo.toml
Christian Legnitto 00b111a1ff
Remove async feature gate (#554)
This still has the async / non-async split. Future diffs will get
rid of `GraphQLTypeAsync` and move everything into `GraphQLType`.
2020-03-08 23:20:11 -07:00

28 lines
694 B
TOML

[package]
name = "juniper_codegen"
version = "0.14.2"
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"
edition = "2018"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.1"
syn = { version = "1.0.3", features = ["full", "extra-traits", "parsing"] }
quote = "1.0.3"
proc-macro-error = "0.3.4"
futures = "0.3.1"
[dev-dependencies]
juniper = { version = "0.14.2", path = "../juniper"}
[badges]
travis-ci = { repository = "graphql-rust/juniper" }