mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
22 lines
655 B
TOML
22 lines
655 B
TOML
[package]
|
|
name = "dioxus-html-macro"
|
|
version = "0.1.0"
|
|
description = "HTML-compliant macro for creating Dioxus VNodes"
|
|
authors = [
|
|
"Jonathan Kelley",
|
|
# Originally pulled from Percy - check it out!
|
|
"Chinedu Francis Nwafili <frankie.nwafili@gmail.com>",
|
|
]
|
|
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"] }
|
|
lazy_static = "1.4.0"
|
|
# html-validation = { path = "../html-validation", version = "0.1.2" }
|