9 releases (5 breaking)

0.8.3 Feb 28, 2023
0.8.0 Jan 27, 2023
0.7.0 Jan 2, 2021
0.6.0 Jun 1, 2020
0.3.2 Nov 11, 2019

#82 in GUI

Download history 875/week @ 2023-11-19 1317/week @ 2023-11-26 934/week @ 2023-12-03 918/week @ 2023-12-10 1148/week @ 2023-12-17 672/week @ 2023-12-24 478/week @ 2023-12-31 783/week @ 2024-01-07 757/week @ 2024-01-14 665/week @ 2024-01-21 603/week @ 2024-01-28 636/week @ 2024-02-04 711/week @ 2024-02-11 861/week @ 2024-02-18 701/week @ 2024-02-25 725/week @ 2024-03-03

3,083 downloads per month
Used in 35 crates (6 directly)

Apache-2.0

1MB
21K SLoC

druid-shell

druid-shell provides a common interface to the various elements of different platform application frameworks. It is designed to be used by Druid, a UI toolkit.

Project status

druid-shell v0.8 was forked to form Glazier, which is where all new development happens. No further development is expected on druid-shell. We recommend everyone migrates to Glazier.

Design

The code in druid-shell can be divided into roughly two categories: the platform agnostic code and types, which are exposed directly, and the platform-specific implementations of these types, which live in per-backend directories in src/backend. The backend-specific code for the current backend is re-exported as druid-shell::backend.

druid-shell does not generally expose backend types directly. Instead, we expose wrapper structs that define the common interface, and then call corresponding methods on the concrete type for the current backend.

Unsafe

Interacting with system APIs is inherently unsafe. One of the goals of druid-shell is to handle all interaction with these APIs, exposing a safe interface to druid and other possible consumers.

Dependencies

~2–24MB
~322K SLoC