Crate egui-toast

Chester Wyke August 31, 2026 #Rust

Add to an existing application

See example commit adding it to the template. And a few notes on below.

  1. Add egui-toast dependency
    cargo add egui-toast
  2. Remove the Debug derive from any struct that will store the egui_toast::Toasts struct as it does not implement Debug.
  3. Ensure toasts.show(ui); is added to the end of the ui update loop so it shows on top of everything else.