[package]
edition = "2024"
name = "compo-macros"
version = "0.1.3"
authors = ["SmileSky <mzdk100@foxmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Compo is a general-purpose declarative and reactive component framework designed for single-threaded asynchronous execution, offering high performance and safety guarantees.\r
Suitable for GUI scenarios or other similar non-GUI component systems.\r
"""
readme = "README.md"
keywords = [
"component",
"reactive",
"declarative",
"async",
"framework",
]
categories = [
"asynchronous",
"gui",
"rust-patterns",
]
license = "Apache-2.0"
repository = "https://github.com/mzdk100/compo.git"
[lib]
name = "compo_macros"
path = "src/lib.rs"
proc-macro = true
[dependencies]