[package]
name = "toolfront-macro"
version = "0.1.0"
edition = "2021"
description = "A procedural macro for generating type-safe API clients from OpenAPI endpoints"
license = "LGPL-3.0"
authors = ["antidmg <antidmg@proton.me>"]
repository = "https://github.com/kruskal-labs/toolfront-macro"
keywords = ["openapi", "api-client", "codegen", "proc-macro"]
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full", "extra-traits"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.12.12", features = ["json"] }