forked from graphql-rust/graphql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 692 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "graphql-parser"
description = """
A parser, AST and serializer for graphql query language and scheme
definition language (sometimes called IDL).
"""
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["graphql", "parser"]
categories = ["parser-implementations", "command-line-interface"]
homepage = "https://github.com/graphql-rust/graphql-parser"
documentation = "https://docs.rs/graphql-parser"
version = "0.4.0"
authors = ["Paul Colomiets <paul@colomiets.name>"]
edition = "2018"
[dependencies]
combine = "4.6.6"
serde = { version = "1.0.163", features = ["derive"], optional = true }
thiserror = "1.0.11"
[dev-dependencies]
pretty_assertions = "0.5.0"