yew/crates/macro/Cargo.toml
Konstantin Itskov a900fbee49 Improve nested html! expansion by unwrapping VNodes (#820)
* Improve nested html! expansion by omitting VNodes

* Add unittest and fix child node expansion

* Fix existing unittests and check backward compat

* Fix rebase conflicts

* Parse expression

* Fix clippy

Co-authored-by: Justin Starry <justin.starry@icloud.com>
2019-12-28 22:27:23 -06:00

36 lines
847 B
TOML

[package]
name = "yew-macro"
version = "0.10.1"
edition = "2018"
authors = ["Justin Starry <justin.starry@icloud.com>"]
repository = "https://github.com/yewstack/yew"
homepage = "https://github.com/yewstack/yew"
documentation = "https://docs.rs/yew-macro/"
license = "MIT/Apache-2.0"
keywords = ["web", "wasm", "frontend", "webasm", "webassembly"]
categories = ["gui", "web-programming", "wasm"]
description = "A framework for making client-side single-page apps"
[badges]
travis-ci = { repository = "yewstack/yew" }
[lib]
proc-macro = true
[dependencies]
boolinator = "2.4.0"
lazy_static = "1.3.0"
proc-macro-hack = "0.5"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "1.0", features = ["full", "extra-traits", "visit-mut"] }
[dev-dependencies]
yew = { path = "../.." }
[build-dependencies]
autocfg = "0.1.3"
[features]
doc_test = []