-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathCargo.toml
70 lines (61 loc) · 1.75 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "apollo-compiler"
version = "1.26.0" # 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-compiler"
description = "A compiler for the GraphQL query language."
keywords = ["graphql", "parser", "graphql-tooling", "apollographql"]
categories = [
"compilers",
"development-tools",
"parser-implementations",
"parsing",
"web-programming",
]
edition = "2021"
autotests = false # Most tests/*.rs files are modules of tests/main.rs
[dependencies]
ahash = "0.8.11"
apollo-parser = { path = "../apollo-parser", version = "0.8.0" }
ariadne = { version = "0.5.0", features = ["auto-color"] }
indexmap = "2.0.0"
rowan = "0.16.0"
serde = { version = "1.0", features = ["derive"] }
serde_json_bytes = { version = "0.2.2", features = ["preserve_order"] }
thiserror = "1.0.31"
triomphe = "0.1.13"
typed-arena = "2.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
uuid = { version = "1.6", features = ["serde", "v4", "js"] }
[dev-dependencies]
anyhow = "1.0"
criterion = "0.5.1"
expect-test = "1.4"
notify = "7.0.0"
pretty_assertions = "1.3.0"
serde_json = "1.0"
serial_test = "3.0.0"
unindent = "0.2.3"
[[bench]]
name = "multi-source"
path = "benches/multi_source.rs"
harness = false
[[bench]]
name = "directives-validation"
path = "benches/directives_validation.rs"
harness = false
[[bench]]
name = "fields-validation"
path = "benches/fields_validation.rs"
harness = false
[[bench]]
name = "fragments-validation"
path = "benches/fragments_validation.rs"
harness = false
[[test]]
name = "main"
# These need to run in a process where no other test runs concurrently
[[test]]
name = "snapshot_tests"