mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
26 lines
586 B
TOML
26 lines
586 B
TOML
[package]
|
|
name = "yew-agent-macro"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
rust-version = "1.84.0"
|
|
authors = ["Kaede Hoshikawa <futursolo@icloud.com>"]
|
|
repository = "https://github.com/yewstack/yew"
|
|
homepage = "https://yew.rs"
|
|
documentation = "https://docs.rs/yew/"
|
|
readme = "../../README.md"
|
|
description = "Macro Support for Yew Agents"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full", "extra-traits"] }
|
|
|
|
[dev-dependencies]
|
|
rustversion = "1"
|
|
trybuild = "1"
|
|
yew-agent = { path = "../yew-agent" }
|