make it compile after merge

This commit is contained in:
= 2022-12-16 10:18:23 -06:00
parent 14dd568987
commit 894e3bf6b5
2 changed files with 2 additions and 1 deletions

View file

@ -26,7 +26,7 @@ pub(super) struct DesktopController {
pub(super) quit_app_on_close: bool,
pub(super) is_ready: Arc<AtomicBool>,
pub(super) proxy: EventLoopProxy<UserWindowEvent>,
pub(super) event_tx: UnboundedSender<Html>,
pub(super) event_tx: UnboundedSender<HtmlEvent>,
#[cfg(debug_assertions)]
pub(super) templates_tx: UnboundedSender<Template<'static>>,

View file

@ -13,6 +13,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
[dependencies]
proc-macro2 = { version = "1.0", features = ["span-locations"] }
dioxus-core = { path = "../core" }
syn = { version = "1.0", features = ["full", "extra-traits"] }
quote = { version = "1.0" }
serde = { version = "1.0", features = ["derive"] }