Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.github/workflows/ | H | 03-May-2022 | - | 117 | 92 | |
examples/ | H | 03-May-2022 | - | 1,400 | 1,037 | |
src/ | H | 03-May-2022 | - | 11,538 | 8,411 | |
.cargo-checksum.json | H A D | 03-May-2022 | 89 | 1 | 1 | |
.cargo_vcs_info.json | H A D | 01-Jan-1970 | 74 | 6 | 5 | |
.cirrus.yml | H A D | 01-Jan-1970 | 663 | 23 | 22 | |
.gitignore | H A D | 01-Jan-1970 | 35 | 5 | 4 | |
CHANGELOG.md | H A D | 01-Jan-1970 | 11.2 KiB | 329 | 210 | |
CONTRIBUTING.md | H A D | 01-Jan-1970 | 2.3 KiB | 43 | 29 | |
Cargo.lock | H A D | 01-Jan-1970 | 15.1 KiB | 604 | 537 | |
Cargo.toml | H A D | 01-Jan-1970 | 1.5 KiB | 62 | 50 | |
Cargo.toml.orig-cargo | H A D | 01-Jan-1970 | 808 | 32 | 28 | |
README.md | H A D | 01-Jan-1970 | 1.3 KiB | 27 | 17 | |
rustfmt.toml | H A D | 01-Jan-1970 | 101 | 5 | 4 | |
travis_install_wayland.sh | H A D | 01-Jan-1970 | 494 | 19 | 9 | |
update_keysyms.sh | H A D | 01-Jan-1970 | 1,012 | 25 | 20 |
README.md
1[![crates.io](https://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