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