43 lines
974 B
TOML
43 lines
974 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/enBoxer"
|
|
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",
|
|
] }
|
|
wayland-client = "0.31"
|
|
wayland-protocols-wlr = { version = "0.3.12", features = ["client"] }
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1"
|