• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/workflows/H03-May-2022-11490

examples/H03-May-2022-1,6381,190

src/H03-May-2022-11,3758,271

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

.cirrus.ymlH A D01-Jan-1970617 2221

.gitignoreH A D01-Jan-197035 54

CHANGELOG.mdH A D01-Jan-197010.4 KiB304194

CONTRIBUTING.mdH A D01-Jan-19702.3 KiB4329

Cargo.lockH A D01-Jan-197017.3 KiB693616

Cargo.tomlH A D01-Jan-19701.5 KiB6653

Cargo.toml.orig-cargoH A D01-Jan-1970841 3329

README.mdH A D01-Jan-19701.3 KiB2717

rustfmt.tomlH A D01-Jan-1970101 54

travis_install_wayland.shH A D01-Jan-1970494 199

update_keysyms.shH A D01-Jan-19701,012 2520

README.md

1[![crates.io](http://meritbadge.herokuapp.com/smithay-client-toolkit)](https://crates.io/crates/smithay-client-toolkit)
2[![docs.rs](https://docs.rs/smithay-client-toolkit/badge.svg)](https://docs.rs/smithay-client-toolkit)
3[![Build Status](https://github.com/Smithay/client-toolkit/workflows/Continuous%20Integration/badge.svg)](https://github.com/Smithay/client-toolkit/actions?query=workflow%3A%22Continuous+Integration%22)
4
5# Smithay's Client Toolkit
6
7This crate is a toolkit for writing wayland clients in rust, on top of [wayland-client](https://crates.io/crates/wayland-client).
8
9Currently a work in progress, it currently provides the following utilities:
10
11- Automatic binding of general wayland globals (`wl_compositor`, `wl_shm`, etc..)
12- Abstraction to create windows (aka toplevel surfaces), abstracting the interaction
13  with the shell (`xdg_shell` or `wl_shell`) and the drawing of decorations
14- Wrapper for `wl_keyboard` for automatic keymap interpretation using `libxkbcommon.so`.
15- Utilites for creating dpi aware surfaces.
16
17## Documentation
18
19The documentation for the master branch is [available online](https://smithay.github.io/client-toolkit/).
20
21The documentation for the releases can be found on [docs.rs](https://docs.rs/smithay-client-toolkit).
22
23## Requirements
24
25Requires at least rust 1.41 to be used and version 1.12 of the wayland system
26libraries.
27