[package]
edition = "2024"
rust-version = "1.85"
name = "cynic-parser"
version = "0.11.0"
authors = ["Graeme Coupar <graeme@turbofish.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, correct and easy to use GraphQL parser"
homepage = "https://docs.rs/cynic-parser"
documentation = "https://docs.rs/cynic-parser"
readme = "README.md"
keywords = [
"graphql",
"parser",
"api",
]
license = "MPL-2.0"
repository = "https://codeberg.org/obmarg/cynic"
resolver = "2"
[features]
default = []
pretty = [
"print",
"dep:pretty",
]
print = []
report = ["ariadne"]
[lib]
name = "cynic_parser"
path = "src/lib.rs"
[[test]]
name = "actual_schemas"
path = "tests/actual_schemas.rs"
[[test]]
name = "executables"
path = "tests/executables.rs"
[[test]]
name = "report"
path = "tests/report.rs"
[[test]]
name = "schema_coordinates"
path = "tests/schema_coordinates.rs"
[[test]]
name = "sdl"
path = "tests/sdl.rs"
[[bench]]
name = "executable"
path = "benches/executable.rs"
harness = false
[[bench]]
name = "schema"
path = "benches/schema.rs"
harness = false
[[bench]]
name = "to-string"
path = "benches/to-string.rs"
harness = false
[dependencies.ariadne]
version = "0.4"
optional = true
[dependencies.indexmap]
version = "2"
[dependencies.lalrpop-util]
version = "0.22.0"
default-features = false
[dependencies.logos]
version = "0.14"
[dependencies.pretty]
version = "0.12"
optional = true
[dev-dependencies.apollo-parser]
version = "0.8"
[dev-dependencies.async-graphql-parser]
version = "7"
[dev-dependencies.divan]
version = "0.1"
[dev-dependencies.graphql-parser]
version = "0.4"
[dev-dependencies.insta]
version = "1"
features = [
"yaml",
"json",
]
[dev-dependencies.similar-asserts]
version = "1.5"
[build-dependencies]