[package]
edition = "2021"
rust-version = "1.88"
name = "typeway-macros"
version = "0.1.0"
authors = ["Josh Burgess"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the typeway web framework"
homepage = "https://github.com/joshburgess/typeway"
documentation = "https://docs.rs/typeway"
readme = "README.md"
keywords = [
"web",
"framework",
"type-level",
"openapi",
"grpc",
]
categories = [
"web-programming",
"web-programming::http-server",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/joshburgess/typeway"
[lib]
name = "typeway_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "handler_tests"
path = "tests/handler_tests.rs"
[dependencies.proc-macro2]
version = "1"
[dependencies.quote]
version = "1"
[dependencies.syn]
version = "2"
features = ["full"]
[dev-dependencies.http]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.trybuild]
version = "1"
[lints.clippy]
upper_case_acronyms = "allow"