enBoxer/Cargo.toml
en 32731fe59b Add control-panel GUI; Video FX rects in pixels or fractions.
`enboxer` with no command opens File/Session/Video/Maps. Native Wayland
clients get a brief focus steal; XWayland/Wine stays unfocused.
2026-09-15 08:26:07 +02:00

41 lines
880 B
TOML

[package]
name = "enboxer"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Mapped-key routing and Video FX for World of Warcraft on Hyprland"
repository = "https://gitea.nettsi.de/en/enbuddy"
readme = "README.md"
authors = ["en"]
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
directories = "6"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tokio = { version = "1", features = [
"fs",
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
eframe = { version = "0.31", default-features = false, features = [
"glow",
"wayland",
"x11",
"default_fonts",
] }
[dev-dependencies]
pretty_assertions = "1"