[package]
edition = "2021"
rust-version = "1.86"
name = "github-graphql-node-count"
version = "0.0.0"
authors = ["Nick DeRobertis <derobertis.nick@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compute the worst-case node count GitHub's GraphQL API attributes to a query, offline, from the query text and its page-size variables."
readme = "README.md"
keywords = [
"github",
"graphql",
"rate-limit",
"node-count",
"static-analysis",
]
categories = [
"development-tools",
"parsing",
]
license = "MIT"
repository = "https://github.com/nickderobertis/github-graphql-node-count"
[lib]
name = "github_graphql_node_count"
path = "src/lib.rs"
[[test]]
name = "counting_rules"
path = "tests/counting_rules.rs"
[[test]]
name = "errors"
path = "tests/errors.rs"
[dependencies.graphql-parser]
version = "0.4.1"
[lints.rust]
warnings = "deny"