[package]
edition = "2021"
rust-version = "1.86"
name = "allframe-macros"
version = "0.1.13"
authors = ["AllFrame Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for AllFrame framework"
readme = "README.md"
keywords = [
"proc-macro",
"macros",
"framework",
"web",
"allframe",
]
categories = ["development-tools::procedural-macro-helpers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/all-source-os/all-frame"
[features]
cqrs-test = []
default = []
[lib]
name = "allframe_macros"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "saga_macros"
path = "tests/saga_macros.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.proc-macro2]
version = "1.0"
[dependencies.quote]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = ["full"]
[dev-dependencies.tokio]
version = "1.0"
features = [
"macros",
"rt",
]
[dev-dependencies.trybuild]
version = "1.0"