mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-07 11:59:59 +03:00
major update: - remove threading overhead by resorting to an event driven design with mio as a backend for epoll - Clients can now have an arbitrary amount of ip adresses and lan-mouse will automatically choose the correct one - -> seemless switching between ethernet and wifi - cli frontend + frontend adapter for future frontends
49 lines
1.8 KiB
TOML
49 lines
1.8 KiB
TOML
[package]
|
|
name = "lan-mouse"
|
|
description = "Software KVM Switch / mouse & keyboard sharing software for Local Area Networks"
|
|
version = "0.1.1-alpha.1"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/ferdinandschober/lan-mouse"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = "fat"
|
|
|
|
[dependencies]
|
|
tempfile = "3.6"
|
|
trust-dns-resolver = "0.22"
|
|
memmap = "0.7"
|
|
toml = "0.7"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
anyhow = "1.0.71"
|
|
log = "0.4.20"
|
|
env_logger = "0.10.0"
|
|
mio = { version = "0.8", features = ["os-ext"] }
|
|
libc = "0.2.148"
|
|
serde_json = "1.0.107"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
wayland-client = { version="0.30.2", optional = true }
|
|
wayland-protocols = { version="0.30.0", features=["client", "staging", "unstable"], optional = true }
|
|
wayland-protocols-wlr = { version="0.1.0", features=["client"], optional = true }
|
|
wayland-protocols-misc = { version="0.1.0", features=["client"], optional = true }
|
|
wayland-protocols-plasma = { version="0.1.0", features=["client"], optional = true }
|
|
mio-signals = "0.2.0"
|
|
x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true }
|
|
gtk = { package = "gtk4", version = "0.7.2", features = ["v4_8"], optional = true }
|
|
adw = { package = "libadwaita", version = "0.5.2", features = ["v1_3"], optional = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.9", features = ["winuser"] }
|
|
|
|
[features]
|
|
default = ["wayland", "x11", "xdg_desktop_portal", "libei"]
|
|
wayland = ["dep:wayland-client", "dep:wayland-protocols", "dep:wayland-protocols-wlr", "dep:wayland-protocols-misc", "dep:wayland-protocols-plasma"]
|
|
x11 = ["dep:x11"]
|
|
xdg_desktop_portal = []
|
|
libei = []
|
|
gtk = ["dep:gtk", "dep:adw"]
|