forked from apollographql/apollo-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 1011 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
43
[package]
name = "apollo-parser"
version = "0.4.1"
authors = ["Irina Shestak <[email protected]>"]
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]
rowan = "0.15.5"
thiserror = "1.0.30"
[dev-dependencies]
miette = { version = "3.2.0", features = ["fancy"] }
apollo-encoder = { path = "../apollo-encoder", version = "0.4.0", features = [
"apollo-parser",
] }
anyhow = "1.0.66"
pretty_assertions = "0.7.1"
annotate-snippets = "0.9.1"
expect-test = "1.1"
unindent = "0.1.7"
criterion = "0.3.0"
[[bench]]
name = "query"
path = "benches/query.rs"
harness = false
[[bench]]
name = "supergraph"
path = "benches/supergraph.rs"
harness = false