24 lines
697 B
TOML
24 lines
697 B
TOML
[package]
|
|
name = "wl-tab"
|
|
version = "0.4.0"
|
|
edition = "2024"
|
|
description = "An simple alt-tab window switcher for sway"
|
|
license = "MIT"
|
|
repository = "https://git.krzak.org/N0VA/wl-tab"
|
|
readme = "README.adoc"
|
|
keywords = ["wayland", "sway", "wlroots", "alt-tab", "switcher"]
|
|
categories = ["command-line-utilities", "os::unix-apis"]
|
|
rust-version = "1.89"
|
|
|
|
[dependencies]
|
|
wayland-client = "0.31"
|
|
wayland-protocols = { version = "0.32", features = ["client", "staging", "unstable"] }
|
|
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
|
|
memmap2 = "0.9"
|
|
rustix = { version = "1", features = ["event", "fs", "mm", "shm"] }
|
|
swayipc = "4"
|
|
cosmic-text = "0.19"
|
|
|
|
[profile.release]
|
|
strip = true
|