druid 0.1.0

Data-oriented Rust UI design toolkit.
docs.rs failed to build druid-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: druid-0.8.3

druid

Data-oriented Rust User Interface Design toolkit

Druid is a new Rust-native UI toolkit, still in early stages. Its main goal is performance, also aiming for small binary size and compile time, fast startup, and very easy build configuration (just cargo run). It is currently Windows-only, but with hope for porting.

Raph gave a talk at the July 2018 SF Rust Meetup (video, slides) about the design. Traditional object-oriented designs have proved to be cumbersome.

The layout protocol is inspired by Flutter. It is originally being developed primarily for use by xi-win, but has the potential to be useful for other applications. Due to its focus on performance and the relative paucity of toolkit-provided components, it is more likely to be useful for games and music software than general-purpose GUI applications. It is currently used as the basis for Synthesizer IO.

The druid-win-shell layer

The druid-win-shell layer is primarily an abstraction for displaying a window and receiving events. As such, it is an alternative to winit.

Ideally all Windows-specific logic (including all uses of unsafe) are isolated to the druid-win-shell subcrate, and druid proper is cross platform and with no unsafe code. That is not entirely the case now.

Evolution

This crate is currently in early stages. More features will be built out as needed for use in the flagship apps, and this will inevitably lead to API instability. Features hoped-for soon include:

  • More of the basic widgets
  • Incremental presentation
  • Some simple theming support

The biggest single obstacle to porting is 2d graphics, as druid currently uses Direct2D (and DirectWrite for text). One way forward is to create a 2d graphics abstraction.

Alternatives

In addition to wrappers for mature UI toolkits (mostly C++), conrod and azul are interesting Rust-native efforts with promise to become usable.

With a focus on 2D games, ggez also looks promising.

Contributions

We gladly accept contributions via GitHub pull requests. Please see CONTRIBUTING.md for more details.

A very good place to ask questions and discuss development work is our Zulip chat instance, in the #druid channel.

Authors

The main author is Raph Levien.