diff --git a/Cargo.toml b/Cargo.toml index 07c1762..05278b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,10 +12,10 @@ byteorder = "1" bytes = "1" cpal = "0.15" crossbeam = "0.8" -eframe = {version = "0.27", default-features = false, features = ["default_fonts", "glow", "persistence"]} -egui = "0.27" -egui_extras = {version = "0.27", features = ["image"]} -egui_node_graph2 = "0.5" +eframe = {version = "0.28.1", default-features = false, features = ["default_fonts", "glow", "persistence"]} +egui = "0.28.1" +egui_extras = {version = "0.28.1", features = ["image"]} +egui_node_graph2 = "0.6" ehttp = "0.5" env_logger = "0.11" futures = "0.3" diff --git a/src/main.rs b/src/main.rs index 83f87ad..869ea21 100644 --- a/src/main.rs +++ b/src/main.rs @@ -660,7 +660,7 @@ async fn main() -> Result<(), Box> { .with_min_inner_size([300.0, 220.0]), ..Default::default() }, - Box::new(|cc| Box::new(App::new(cc))), + Box::new(|cc| Ok(Box::new(App::new(cc)))), )?; Ok(())