-
Notifications
You must be signed in to change notification settings - Fork 137
The example doesn't work with version 0.3.0 #66
Comments
Hi! The On the other hand, you may be interested in using a git dependency so you can get all the new developments from the main branch. I am using the main branch of this library for several projects, so I always try to keep in in a working state (except for the occasional bug). As for next release, I can't tell when that will happen. I should probably make a 0.4.0 soon with the current state of the repo, but first I need to do some thorough testing to ensure there are no bugs. |
This runs the desktop app just fine but the web version it doesn't work, or maybe I am doing things in the wrong order? I tried with ./setup_web.sh && ./build_web.sh but this fails with: Compiling egui_node_graph_example v0.1.0 (/Users/gustavo.barrios/Documents/rust/egui_node_graph/egui_node_graph_example)
error[E0277]: expected a `FnOnce<(&CreationContext<'_>,)>` closure, found `NodeGraphExample`
--> egui_node_graph_example/src/lib.rs:22:34
|
22 | eframe::start_web(canvas_id, Box::new(app))
| ^^^^^^^^^^^^^ expected an `FnOnce<(&CreationContext<'_>,)>` closure, found `NodeGraphExample`
|
= help: the trait `for<'r, 's> FnOnce<(&'r CreationContext<'s>,)>` is not implemented for `NodeGraphExample`
= note: required for the cast from `NodeGraphExample` to the object type `dyn for<'r, 's> FnOnce(&'r CreationContext<'s>) -> Box<(dyn App + 'static)>`
For more information about this error, try `rustc --explain E0277`.
error: could not compile `egui_node_graph_example` due to previous error
|
I fixed this by merging this example with the one in eframe (this uses trunk for building it instead of the shell scripts), I could submit a PR, are any consideration I would have to take before doing it? |
The example doesn't work with version 0.3.0. Are you gonna release a new version? or maybe add some more documentation to make it easier to get started?
The text was updated successfully, but these errors were encountered: