https://github.com/bugadani/embedded-gui
A (bad) Rust GUI toolkit built on top of embedded-graphics
https://github.com/bugadani/embedded-gui
Last synced: about 1 year ago
JSON representation
A (bad) Rust GUI toolkit built on top of embedded-graphics
- Host: GitHub
- URL: https://github.com/bugadani/embedded-gui
- Owner: bugadani
- Created: 2021-03-14T08:53:48.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-03-19T10:29:52.000Z (about 3 years ago)
- Last Synced: 2025-04-09T07:41:45.469Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 3.31 MB
- Stars: 22
- Watchers: 3
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
embedded-gui
============
`embedded-gui` is an experimental `no_std`, `no_alloc`, cross-platform, composable Rust GUI toolkit.
`embedded-gui` consists of two parts: the main crate, and a platform-specific backend.
The main crate contains layout containers, composable base widgets, and the event handling framework.
Backend crates define how each widget is rendered, and they may also contain custom widgets or
backend-specific extensions to the base widgets.
Supported platforms
-------------------
* `embedded-graphics`: [platform][embedded-graphics] - [backend][backend-embedded-graphics]
[embedded-graphics]: https://github.com/embedded-graphics/embedded-graphics
[backend-embedded-graphics]: https://github.com/bugadani/embedded-gui/backend-embedded-graphics
Development setup
-----------------
### Minimum supported Rust version
The minimum supported Rust version for embedded-text is 1.51.0 or greater. Ensure you have the latest stable version of Rust installed, preferably through https://rustup.rs.