Files
ltk/Cargo.toml
Pedro M. de Echanove Pasquin 4aa3480b64 refactor: split every monolithic module into focused submodules
Each source file that had grown beyond a single concern is replaced by an identically-named directory containing focused submodules. `src/event_loop/mod.rs` (878 lines) becomes a directory with clipboard, context_menu, cursor_shape, drag, focus, handlers, invalidation, overlays_reconcile, repeat, run, surface, text_editing, and tooltip. Every widget, input handler, and theme component follows the same split. Public interfaces are unchanged — only the internal file layout moves.
image bumped from 0.25.2 to 0.25.9.
2026-05-15 23:46:56 +02:00

47 lines
1.6 KiB
TOML

[package]
name = "ltk"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "LGPL-2.1-only"
description = "Lightweight declarative Wayland UI toolkit. Elm-shaped App / view / update model with GLES and software rendering backends, layer-shell support, runtime theming and a runtime-free core surface for embedding."
repository = "https://github.com/liberux/ltk"
documentation = "https://docs.rs/ltk"
homepage = "https://liberux.net"
readme = "README.md"
keywords = [ "wayland", "ui", "gui", "toolkit", "layer-shell" ]
categories = [ "gui", "rendering", "os::linux-apis" ]
authors = [ "Liberux Labs, S. L. <info@liberux.net>" ]
exclude = [
"target/*",
"debian/*",
"themes/*",
"liberux.toml",
"TODO",
]
[dependencies]
chrono = { version = "0.4", features = ["clock"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smithay-client-toolkit = { version = "0.20", features = ["calloop", "calloop-wayland-source", "xkbcommon"] }
calloop = "0.14"
calloop-wayland-source = "0.4"
tiny-skia = "0.12"
fontdue = "0.9"
image = { version = "=0.25.9", default-features = false, features = ["png", "jpeg", "webp"] }
resvg = "0.44"
rust-i18n = "3"
wayland-protocols = { version = "0.32", features = ["client", "unstable", "staging"] }
wayland-egl = "0.32"
khronos-egl = { version = "6", features = ["dynamic"] }
glow = "0.17"
raw-window-handle = "0.6"
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "lookup"
harness = false