beckon 0.3.1

Generate type-safe, async HTTP clients from endpoint definitions — a Rust proc macro.
Documentation
[package]
name = "beckon"
version = "0.3.1"
edition = "2021"
rust-version = "1.75"
authors = ["Azeem Shaik <azeemshaik025@gmail.com>"]
description = "Generate type-safe, async HTTP clients from endpoint definitions — a Rust proc macro."
repository = "https://github.com/azeemshaik025/beckon"
homepage = "https://github.com/azeemshaik025/beckon"
license = "MIT OR Apache-2.0"
keywords = ["http", "client", "rest", "api", "proc-macro"]
categories = ["web-programming::http-client", "development-tools"]
readme = "README.md"
documentation = "https://docs.rs/beckon"

[lib]
proc-macro = true

[dependencies]
heck = "0.5.0"
proc-macro2 = "1.0.95"
quote = "1.0.40"
regex = "1.11.1"
syn = { version = "2.0.102", features = ["full", "extra-traits", "parsing"] }

[dev-dependencies]
wiremock = "0.6"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122"

[features]
default = []