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