[package]
edition = "2021"
name = "dioxus-core-macro"
version = "0.7.6"
authors = ["Jonathan Kelley"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core macro for Dioxus Virtual DOM"
homepage = "https://dioxuslabs.com"
readme = "README.md"
keywords = [
"dom",
"ui",
"gui",
"react",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/DioxusLabs/dioxus/"
[package.metadata.docs.rs]
cargo-args = [
"-Zunstable-options",
"-Zrustdoc-scrape-examples",
]
[features]
default = []
[lib]
name = "dioxus_core_macro"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "event_handler"
path = "tests/event_handler.rs"
[[test]]
name = "generics"
path = "tests/generics.rs"
[[test]]
name = "rsx"
path = "tests/rsx.rs"
[[test]]
name = "values_memoize_in_place"
path = "tests/values_memoize_in_place.rs"
[dependencies.convert_case]
version = "0.8.0"
[dependencies.dioxus-rsx]
version = "0.7.6"
[dependencies.proc-macro2]
version = "1.0.101"
[dependencies.quote]
version = "1.0.38"
[dependencies.syn]
version = "2.0.104"
features = [
"full",
"extra-traits",
"visit",
]