juniper/juniper_codegen/Cargo.toml
Blaž Hrastnik dcbb74155d juniper_codegen: Drop regex & lazy_static dependencies (#424)
* Replace regex & lazy_static with a simple check.
2019-09-07 21:19:37 -07:00

26 lines
650 B
TOML

[package]
name = "juniper_codegen"
version = "0.13.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.2"
[dev-dependencies]
juniper = { version = "0.13.1", path = "../juniper" }
[badges]
travis-ci = { repository = "graphql-rust/juniper" }