graphql-extract 0.0.13

Macro to extract data from deeply nested types representing GraphQL results
Documentation
[package]
autotests   = false
description = "Macro to extract data from deeply nested types representing GraphQL results"
name        = "graphql-extract"
version     = "0.0.13"

authors.workspace      = true
categories.workspace   = true
edition.workspace      = true
license.workspace      = true
repository.workspace   = true
rust-version.workspace = true

[package.metadata.docs.rs]
# To build locally:
# RUSTDOCFLAGS="--generate-link-to-definition" cargo doc --all-features --no-deps --open
all-features = true
rustdoc-args = [
  # Generate links to definition in rustdoc source code pages
  # https://github.com/rust-lang/rust/pull/84176
  "--generate-link-to-definition",
]

[lib]
proc-macro = true

[lints]
workspace = true

[dependencies]
derive-syn-parse = "0.2"
proc-macro2      = "1"
quote            = "1"
syn              = { version = "3", features = ["full"] }

[dev-dependencies]
insta    = "1"
trybuild = { version = "1", features = ["diff"] }

[[test]]
name = "trybuild"
path = "tests/trybuild.rs"

[[test]]
name = "errors"
path = "tests/errors.rs"