1
0
Эх сурвалжийг харах

Merge branch 'master' of github.com:DioxusLabs/dioxus

Jonathan Kelley 2 жил өмнө
parent
commit
20497f1510

+ 1 - 0
examples/fermi.rs

@@ -10,6 +10,7 @@ fn main() {
 static NAME: Atom<String> = |_| "world".to_string();
 
 fn app(cx: Scope) -> Element {
+    use_init_atom_root(&cx);
     let name = use_read(cx, NAME);
 
     cx.render(rsx! {

+ 1 - 1
packages/dioxus/Cargo.toml

@@ -9,7 +9,7 @@ repository = "https://github.com/DioxusLabs/dioxus/"
 homepage = "https://dioxuslabs.com"
 documentation = "https://dioxuslabs.com"
 keywords = ["dom", "ui", "gui", "react", "wasm"]
-rust-version = "1.60.0"
+rust-version = "1.65.0"
 
 [dependencies]
 dioxus-core = { path = "../core", version = "^0.3.0" }