[package]
edition = "2024"
name = "graphql-schema-diff"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Semantic diffing for GraphQL schemas"
homepage = "https://github.com/yanns/graphql-schema-diff"
readme = "README.md"
keywords = [
"graphql",
"schema",
"diff",
]
categories = [
"development-tools",
"web-programming",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/yanns/graphql-schema-diff"
[features]
default = ["serde"]
[lib]
name = "graphql_schema_diff"
path = "src/lib.rs"
[[test]]
name = "diff_tests"
path = "tests/diff_tests.rs"
harness = false
required-features = ["serde"]
[[test]]
name = "patch_tests"
path = "tests/patch_tests.rs"
harness = false
[dependencies.cynic-parser]
version = "0.11.1"
[dependencies.serde]
version = "1.0.223"
features = ["derive"]
optional = true
[dev-dependencies.datatest-stable]
version = "0.3.2"
[dev-dependencies.serde_json]
version = "1.0.145"
features = ["preserve_order"]
[dev-dependencies.similar]
version = "3.0"
[lints.clippy]
bool-to-int-with-if = "allow"
cast-possible-truncation = "allow"
default-trait-access = "allow"
derive-partial-eq-without-eq = "allow"
doc-markdown = "allow"
enum-glob-use = "allow"
implicit-hasher = "allow"
into_iter_without_iter = "allow"
items-after-statements = "allow"
iter_without_into_iter = "allow"
large-digit-groups = "allow"
let-underscore-untyped = "allow"
let-with-type-underscore = "allow"
manual-assert = "allow"
map-unwrap-or = "allow"
match-wildcard-for-single-variants = "allow"
missing-errors-doc = "allow"
missing-panics-doc = "allow"
module-name-repetitions = "allow"
must-use-candidate = "allow"
needless-pass-by-value = "allow"
panic = "deny"
redundant-closure-for-method-calls = "allow"
single-match-else = "allow"
struct-excessive-bools = "allow"
struct-field-names = "allow"
too-many-lines = "allow"
unnecessary-fallible-conversions = "allow"
unused-async = "allow"
unused-self = "allow"
wildcard-imports = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
nonstandard-style = "deny"
rust-2018-idioms = "deny"