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

25 lines
739 B
TOML
Raw Normal View History

2020-03-01 10:54:34 +00:00
[package]
name = "async-graphql-derive"
2020-05-14 14:14:31 +00:00
version = "1.12.7"
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/"
2020-04-28 07:41:31 +00:00
homepage = "https://github.com/async-graphql/async-graphql"
repository = "https://github.com/async-graphql/async-graphql"
2020-03-01 13:56:14 +00:00
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]
2020-05-13 11:04:13 +00:00
async-graphql-parser = { path = "../async-graphql-parser", version = "0.3.1" }
2020-03-01 10:54:34 +00:00
proc-macro2 = "1.0.6"
syn = { version = "1.0.20", features = ["full", "extra-traits"] }
2020-03-10 06:27:05 +00:00
quote = "1.0.3"
2020-03-09 12:00:57 +00:00
Inflector = "0.11.4"
2020-05-12 08:38:59 +00:00
proc-macro-crate = "0.1.4"