[package]
edition = "2024"
rust-version = "1.86"
name = "openapi-contract-macros"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Proc-macro implementation for the openapi-contract crate. Not intended to be used directly — depend on `openapi-contract` instead."
homepage = "https://github.com/ZacharyL2/openapi-contract"
readme = "README.md"
keywords = [
"openapi",
"api",
"http",
"proc-macro",
"compile-time",
]
categories = [
"api-bindings",
"web-programming::http-client",
"development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZacharyL2/openapi-contract"
resolver = "2"
[lib]
name = "openapi_contract_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies.heck]
version = "0.5"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.syn]
version = "2"
features = [
"full",
"parsing",
"printing",
]