[package]
edition = "2021"
rust-version = "1.82.0"
name = "lambda-appsync-proc"
version = "0.10.0"
authors = ["Jérémie RODON <jeremie.rodon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the lambda-appsync type-safe AWS AppSync resolver framework"
documentation = "https://docs.rs/lambda-appsync"
readme = false
keywords = [
"aws",
"appsync",
"lambda",
"graphql",
"serverless",
]
categories = [
"web-programming",
"api-bindings",
"development-tools::procedural-macro-helpers",
]
license = "MIT"
repository = "https://github.com/RustyServerless/lambda-appsync"
[features]
compat = []
default = [
"compat",
"log",
"env_logger",
"tracing",
]
env_logger = []
log = []
tracing = []
[lib]
name = "lambda_appsync_proc"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.graphql-parser]
version = "0.4"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"parsing",
"proc-macro",
]
default-features = false
[dev-dependencies.aws-sdk-dynamodb]
version = "1.59"
[dev-dependencies.aws-sdk-s3]
version = "1.59"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.trybuild]
version = "1.0"