dioxus/packages/html-macro/Cargo.toml

23 lines
655 B
TOML
Raw Normal View History

2021-01-14 07:56:41 +00:00
[package]
2021-01-19 13:53:47 +00:00
name = "dioxus-html-macro"
version = "0.1.0"
description = "HTML-compliant macro for creating Dioxus VNodes"
2021-01-19 13:50:56 +00:00
authors = [
"Jonathan Kelley",
2021-01-19 13:53:47 +00:00
# Originally pulled from Percy - check it out!
2021-01-19 13:50:56 +00:00
"Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
]
2021-01-14 07:56:41 +00:00
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
license = "MIT/Apache-2.0"
edition = "2018"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = { version = "0.4", features = ["span-locations"] }
quote = "0.6.11"
syn = { version = "0.15", features = ["full", "extra-traits"] }
2021-01-19 14:08:41 +00:00
lazy_static = "1.4.0"
# html-validation = { path = "../html-validation", version = "0.1.2" }