async-graphql/async-graphql-derive/Cargo.toml

24 lines
631 B
TOML
Raw Normal View History

2020-03-01 10:54:34 +00:00
[package]
name = "async-graphql-derive"
2020-03-20 03:56:08 +00:00
version = "1.3.2"
2020-03-01 10:54:34 +00:00
authors = ["sunli <scott_s829@163.com>"]
edition = "2018"
2020-03-18 00:44:41 +00:00
description = "Macros for async-graphql"
2020-03-01 13:56:14 +00:00
publish = true
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/async-graphql/"
homepage = "https://github.com/sunli829/async-graphql"
repository = "https://github.com/sunli829/async-graphql"
keywords = ["futures", "async", "graphql"]
2020-03-03 11:27:04 +00:00
categories = ["network-programming", "asynchronous"]
2020-03-01 10:54:34 +00:00
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0.6"
syn = { version = "1.0.13", features = ["full"] }
2020-03-10 06:27:05 +00:00
quote = "1.0.3"
2020-03-03 03:48:00 +00:00
graphql-parser = "0.2.3"
2020-03-09 12:00:57 +00:00
Inflector = "0.11.4"