juniper/juniper_codegen/Cargo.toml

32 lines
748 B
TOML
Raw Normal View History

[package]
name = "juniper_codegen"
2019-12-16 23:52:50 -06:00
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
2019-08-18 14:36:44 -05:00
[features]
2020-01-21 01:38:44 -06:00
async = ["juniper/async"]
2019-08-18 14:36:44 -05:00
[dependencies]
proc-macro2 = "1.0.1"
syn = { version = "1.0.3", features = ["full", "extra-traits", "parsing"] }
quote = "1.0.2"
proc-macro-error = "0.3.4"
[dev-dependencies]
2019-12-16 23:53:51 -06:00
juniper = { version = "0.14.2", path = "../juniper" }
2020-01-21 01:38:44 -06:00
futures = { version = "=0.3.1" }
[badges]
travis-ci = { repository = "graphql-rust/juniper" }