vietc/protocol/Cargo.toml
Khoa Vo 88d39b4475
Some checks are pending
Build & Release / Build & test (push) Waiting to run
Build & Release / Build .deb (push) Blocked by required conditions
release: v0.1.6 — uinput-first injection, window-switch fix, Telex disabled
- uinput injection is now primary on X11 (XTest fallback)
- X11 XTest keycode offset +8 fixed for all send_keycode paths
- Window switch detection on every keystroke (no more gap > 100ms guard)
- Telex greyed out in tray with '(next version)' label
- Flatpak and AppImage removed; only .deb packaging
- All Cargo.toml versions bumped to 0.1.6
2026-06-29 16:07:15 +07:00

15 lines
426 B
TOML

[package]
name = "vietc-protocol"
version = "0.1.6"
edition = "2021"
description = "Viet+ keystroke injection backends (X11/Wayland)"
[dependencies]
libc = "0.2"
wayland-client = { version = "0.31", optional = true }
wayland-protocols = { version = "0.31", features = ["staging"], optional = true }
[features]
default = ["x11", "wayland-protocol"]
x11 = []
wayland-protocol = ["dep:wayland-client", "dep:wayland-protocols"]