135 releases
| 0.31.10 | Jul 28, 2025 |
|---|---|
| 0.31.7 | Jan 31, 2025 |
| 0.31.6 | Oct 23, 2024 |
| 0.31.4 | Jul 16, 2024 |
| 0.7.6 | Nov 12, 2016 |
#752 in GUI
30,937 downloads per month
Used in 17 crates
(15 directly)
440KB
9K
SLoC
wayland-server
Server side API for the Wayland protocol. This crate provides infrastructure for manipulating
Wayland objects, as well as object definitions for the core Wayland protocol. Protocol extensions
can be supported as well by combining this crate with wayland-protocols, which provides object
definitions for a large set of extensions.
Note: This crate is a low-level interface to the Wayland protocol. If you are looking for a more battery-included toolkit for writing a Wayland server, you may consider Smithay, which is a Wayland server framework built on top of it.
The crate has different backends to Wayland protocol serialization:
- By default, it uses a pure-rust implementation of the protocol, and contains little
unsafecode. - Activating the
use_system_libmakes it instead bind to the systemlibwayland-server.so. This allows you to access C pointer versions of the wayland objects, which is necessary for interfacing with other non-Rust Wayland-related libraries (such as for OpenGL support, see thewayland-eglcrate). - Activating the
dlopenimpliesuse_system_lib, but additionaly the crate will not explicitly link tolibwayland-server.soand instead try to open it at runtime, and return an error if it cannot find it. This allows you to build apps that can gracefully run in non-Wayland environment without needing compile-time switches.
Dependencies
~3–7.5MB
~157K SLoC