Skip to content

Commit 8964945

Browse files
committed
bump egui version 0.30
1 parent 7fa2572 commit 8964945

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ github = "https://github.com/GodGotzi/egui_xml.git"
88

99
[dependencies]
1010
egui_xml_macros = { version = "0.1.2", path = "macros" }
11-
egui_extras = "0.27"
11+
egui_extras = "0.30"
1212

1313
[dev-dependencies]
14-
eframe = "0.27"
15-
egui = "0.27"
14+
eframe = "0.30"
15+
egui = "0.30"
1616

1717
[[example]]
1818
name = "simple"

examples/dynamic_insertion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() -> Result<(), eframe::Error> {
99
eframe::run_native(
1010
"My egui App",
1111
options,
12-
Box::new(|_cc| Box::<MyApp>::default()),
12+
Box::new(|_cc| Ok(Box::<MyApp>::default())),
1313
)
1414
}
1515

examples/file.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn main() -> Result<(), eframe::Error> {
88
eframe::run_native(
99
"My egui App",
1010
options,
11-
Box::new(|_cc| Box::<MyApp>::new(MyApp)),
11+
Box::new(|_cc| Ok(Box::<MyApp>::new(MyApp))),
1212
)
1313
}
1414

examples/full.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() -> Result<(), eframe::Error> {
99
eframe::run_native(
1010
"My egui App",
1111
options,
12-
Box::new(|_cc| Box::<MyApp>::new(MyApp)),
12+
Box::new(|_cc| Ok(Box::<MyApp>::new(MyApp))),
1313
)
1414
}
1515

examples/simple.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ fn main() -> Result<(), eframe::Error> {
99
eframe::run_native(
1010
"My egui App",
1111
options,
12-
Box::new(|_cc| Box::<MyApp>::new(MyApp)),
12+
Box::new(|_cc| Ok(Box::<MyApp>::new(MyApp))),
1313
)
1414
}
1515

macros/src/layout/strip.rs

+1
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,7 @@ pub fn expand_strip(
341341
}
342342
}
343343
}
344+
344345
}
345346
}
346347
});

0 commit comments

Comments
 (0)