15 breaking releases

0.16.0 May 20, 2025
0.15.0 Jul 8, 2024
0.14.0 Feb 8, 2023
0.13.0 Dec 11, 2022
0.2.0 Mar 23, 2021

#810 in GUI

Download history 369/week @ 2025-06-15 772/week @ 2025-06-22 329/week @ 2025-06-29 580/week @ 2025-07-06 762/week @ 2025-07-13 751/week @ 2025-07-20 568/week @ 2025-07-27 396/week @ 2025-08-03 736/week @ 2025-08-10 857/week @ 2025-08-17 764/week @ 2025-08-24 885/week @ 2025-08-31 942/week @ 2025-09-07 801/week @ 2025-09-14 827/week @ 2025-09-21 680/week @ 2025-09-28

3,342 downloads per month
Used in 13 crates (6 directly)

MIT/Apache

40KB
729 lines

egui bindings for miniquad

Latest version Documentation Build Status MIT Apache

native

On Linux you first must run apt install libx11-dev libxi-dev libgl1-mesa-dev (miniquad dependencies).

cargo run --release --example demo

Compiling for the web

You can compile your app to WASM and publish it as a web page. For this you need to set up some tools. There are a few simple scripts that help you with this:

./setup_web.sh
./build_web.sh
./start_server.sh
open http://127.0.0.1:8080/
  • setup_web.sh installs the tools required to build for web
  • build_web.sh compiles your code to wasm and puts it in the docs/ folder (see below)
  • start_server.sh starts a local HTTP server so you can test before you publish
  • Open http://127.0.0.1:8080/ in a web browser to view

The finished web app is found in the docs/ folder (this is so that you can easily share it with GitHub Pages).

You can try the demo in this repository by visiting https://not-fl3.github.io/egui-miniquad/.

Dependencies

~6–10MB
~201K SLoC