[package]
edition = "2021"
name = "aethermapd"
version = "1.4.2"
authors = ["Aethermap Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Privileged system daemon for aethermap"
homepage = "https://github.com/oldnordic/aethermap"
readme = "README.md"
keywords = [
"input",
"remapper",
"macro",
"linux",
"evdev",
]
categories = [
"hardware-support",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oldnordic/aethermap"
[package.metadata.deb]
maintainer = "Aethermap Team"
copyright = "2024, Aethermap Team"
depends = "$auto"
section = "utility"
priority = "optional"
assets = [
[
"target/release/aethermapd",
"usr/bin/",
"755",
],
[
"../aethermapd.service",
"usr/lib/systemd/system/",
"644",
],
]
[features]
default = []
token-auth = []
[lib]
name = "aethermapd"
path = "src/lib.rs"
[[bin]]
name = "aethermapd"
path = "src/main.rs"
[[bin]]
name = "test_grab"
path = "src/bin/test_grab.rs"
[[test]]
name = "config_reload_test"
path = "tests/config_reload_test.rs"
[[test]]
name = "hotplug_test"
path = "tests/hotplug_test.rs"
[[test]]
name = "macro_integration_test"
path = "tests/macro_integration_test.rs"
[[test]]
name = "remap_integration_test"
path = "tests/remap_integration_test.rs"
[dependencies.aethermap-common]
version = "1.4.2"
[dependencies.async-trait]
version = "0.1"
[dependencies.bincode]
version = "1.3"
[dependencies.evdev]
version = "0.12"
[dependencies.hidapi]
version = "2.4"
features = ["linux-static-hidraw"]
[dependencies.libc]
version = "0.2"
[dependencies.nix]
version = "0.29"
features = [
"user",
"ioctl",
"fs",
]
[dependencies.rand]
version = "0.10.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tempfile]
version = "3.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
[dependencies.udev]
version = "0.9"
[dependencies.uinput-sys]
version = "0.1"