[package]
edition = "2024"
rust-version = "1.94"
name = "async-graphql-test"
version = "1.0.0"
authors = [
"Dmitrii Aleksandrov <adk2300@gmail.com>",
"Igor Strebezhev <xamgore@ya.ru>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A test framework for Rust GraphQL servers."
documentation = "https://docs.rs/async-graphql-test/"
readme = "README.md"
keywords = [
"api",
"graphql",
"test",
"testing",
]
categories = ["development-tools::testing"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/expurple/async-graphql-test"
[lib]
name = "async_graphql_test"
path = "src/lib.rs"
[dependencies.async-graphql]
version = "7"
default-features = false
[dependencies.itertools]
version = "0.14"
[dependencies.regex]
version = "1"
features = [
"std",
"unicode",
]
default-features = false
[dependencies.serde_json]
version = "1"
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"