Simple notifications library for EGUI
```rust use egui_notify::Toasts;
let mut t = Toasts::default(); t.info("Hello world!", |t| t.with_duration(5.)); // ... t.show(ctx); ```
toml [dependencies] egui-notify = "0.1"