async-graphql/parser/Cargo.toml
2022-08-09 14:49:49 +08:00

25 lines
754 B
TOML

[package]
authors = ["sunli <scott_s829@163.com>", "Koxiaet"]
categories = ["network-programming", "asynchronous"]
description = "GraphQL query parser for async-graphql"
documentation = "https://docs.rs/async-graphql/"
edition = "2021"
homepage = "https://github.com/async-graphql/async-graphql"
keywords = ["futures", "async", "graphql"]
license = "MIT/Apache-2.0"
name = "async-graphql-parser"
repository = "https://github.com/async-graphql/async-graphql"
version = "4.0.6"
[dependencies]
async-graphql-value = { path = "../value", version = "4.0.6" }
pest = "2.2.1"
serde = { version = "1.0.125", features = ["derive"] }
serde_json = "1.0.64"
[dev-dependencies]
pest_generator = "2.1.3"
prettyplease = "0.1.18"
proc-macro2 = "1.0.37"
syn = "1.0.99"