-
Notifications
You must be signed in to change notification settings - Fork 46
/
Cargo.toml
42 lines (38 loc) · 947 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "apollo-parser"
version = "0.8.3" # When bumping, also update README.md
authors = ["Irina Shestak <shestak.irina@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/apollographql/apollo-rs"
documentation = "https://docs.rs/apollo-parser"
description = "Spec-compliant GraphQL parser."
keywords = ["graphql", "parser", "graphql-tooling", "apollographql"]
categories = [
"compilers",
"development-tools",
"parser-implementations",
"parsing",
"web-programming",
]
edition = "2021"
[dependencies]
memchr = "2.6.1"
rowan = "0.16.0"
thiserror = "1.0.30"
[dev-dependencies]
ariadne = "0.5.0"
indexmap = "2.0.0"
anyhow = "1.0.66"
pretty_assertions = "1.3.0"
annotate-snippets = "0.11.0"
expect-test = "1.4"
unindent = "0.2.1"
criterion = "0.5.0"
[[bench]]
name = "query"
path = "benches/query.rs"
harness = false
[[bench]]
name = "supergraph"
path = "benches/supergraph.rs"
harness = false