mirror of
https://github.com/yewstack/yew.git
synced 2025-12-08 21:26:25 +00:00
* Update to syn 2 * bless macro outputs * update prettyplease * fix review + update lockfile
32 lines
791 B
TOML
32 lines
791 B
TOML
[package]
|
|
name = "yew-macro"
|
|
version = "0.20.0"
|
|
edition = "2021"
|
|
authors = ["Justin Starry <justin@yew.rs>"]
|
|
repository = "https://github.com/yewstack/yew"
|
|
homepage = "https://github.com/yewstack/yew"
|
|
documentation = "https://docs.rs/yew-macro/"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
|
|
categories = ["gui", "web-programming", "wasm"]
|
|
description = "A framework for making client-side single-page apps"
|
|
rust-version = "1.60.0"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
boolinator = "2"
|
|
proc-macro-error = "1"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full", "extra-traits", "visit-mut"] }
|
|
once_cell = "1"
|
|
prettyplease = "0.2"
|
|
|
|
# testing
|
|
[dev-dependencies]
|
|
rustversion = "1"
|
|
trybuild = "1"
|
|
yew = { path = "../yew" }
|