diff --git a/packages/core/Cargo.toml b/packages/core/Cargo.toml index c6da580d8..1c25711d5 100644 --- a/packages/core/Cargo.toml +++ b/packages/core/Cargo.toml @@ -11,7 +11,7 @@ description = "Core functionality for Dioxus - a concurrent renderer-agnostic Vi [dependencies] generational-arena = "0.2.8" -html-macro = { path = "../html-macro" } +dioxus-html-macro = { path = "../html-macro" } once_cell = "1.5.2" diff --git a/packages/core/src/lib.rs b/packages/core/src/lib.rs index a9b647fdd..4f9dc9919 100644 --- a/packages/core/src/lib.rs +++ b/packages/core/src/lib.rs @@ -18,7 +18,7 @@ pub mod prelude { pub type VirtualNode = VNode; // Re-export from the macro crate - pub use html_macro::html; + pub use dioxus_html_macro::html; } /// The Dioxus Virtual Dom integrates an event system and virtual nodes to create reactive user interfaces.