2017-06-24 06:23:20 -05:00
|
|
|
[package]
|
|
|
|
name = "juniper_codegen"
|
2018-12-18 19:08:49 -06:00
|
|
|
version = "0.11.1"
|
2017-12-03 11:33:40 -06:00
|
|
|
authors = [
|
|
|
|
"Magnus Hallin <mhallin@fastmail.com>",
|
|
|
|
"Christoph Herzog <chris@theduke.at>",
|
|
|
|
]
|
2017-06-24 06:23:20 -05:00
|
|
|
description = "Internal custom derive trait for Juniper GraphQL"
|
|
|
|
license = "BSD-2-Clause"
|
|
|
|
documentation = "https://docs.rs/juniper"
|
2017-08-07 01:15:50 -05:00
|
|
|
repository = "https://github.com/graphql-rust/juniper"
|
2019-04-22 13:37:46 -05:00
|
|
|
edition = "2018"
|
2017-06-24 06:23:20 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2018-08-27 16:51:12 -05:00
|
|
|
proc-macro2 = "0.4"
|
|
|
|
syn = { version = "0.14", features = ["full", "extra-traits"] }
|
|
|
|
quote = "0.6"
|
|
|
|
regex = "1"
|
2018-05-23 02:25:20 -05:00
|
|
|
lazy_static = "1.0.0"
|
2017-06-24 06:23:20 -05:00
|
|
|
|
|
|
|
[badges]
|
2017-08-07 01:15:50 -05:00
|
|
|
travis-ci = { repository = "graphql-rust/juniper" }
|