mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
88af3e7eff
Hotreload the contents of for loops, if chains, component bodies, props, attributes, and any literals discovered in rsx! Add a TUI renderer to the CLI. Improve the CLI build system to be async and parallel. Refactor RSX to allow partial expansion of expressions. Merge autofmt implementations for consistency. Merge the representation of elements and components under the hood. Add a diagnostics system for rsx for improved error messages. Drop interprocess and move to websockets for communication between the CLI and the server. Assign IDs to nodes and attributes in a stable way to be used in non compiler contexts. Add hotreloading to any body of component/for loop/if chain/etc. --------- Co-authored-by: Evan Almloff <evanalmloff@gmail.com> Co-authored-by: Liam Mitchell <liamkarlmitchell@gmail.com>
35 lines
929 B
TOML
35 lines
929 B
TOML
[package]
|
|
name = "dioxus-core-macro"
|
|
version = { workspace = true }
|
|
authors = ["Jonathan Kelley"]
|
|
edition = "2021"
|
|
description = "Core macro for Dioxus Virtual DOM"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/DioxusLabs/dioxus/"
|
|
homepage = "https://dioxuslabs.com"
|
|
keywords = ["dom", "ui", "gui", "react"]
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = { version = "1.0" }
|
|
quote = { workspace = true }
|
|
syn = { workspace = true, features = ["full", "extra-traits", "visit"] }
|
|
dioxus-rsx = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
prettyplease = "0.2.15"
|
|
|
|
# testing
|
|
[dev-dependencies]
|
|
dioxus = { workspace = true }
|
|
dioxus-html = { workspace = true, features = ["serialize"]}
|
|
rustversion = "1.0"
|
|
tokio = { workspace = true, features = ["full", "time"] }
|
|
trybuild = "1.0"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[package.metadata.docs.rs]
|
|
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|