mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-07 11:59:59 +03:00
66 lines
1.8 KiB
TOML
66 lines
1.8 KiB
TOML
[workspace]
|
|
members = [
|
|
"input-capture",
|
|
"input-emulation",
|
|
"input-event",
|
|
"lan-mouse-ipc",
|
|
"lan-mouse-cli",
|
|
"lan-mouse-gtk",
|
|
"lan-mouse-proto",
|
|
]
|
|
|
|
[package]
|
|
name = "lan-mouse"
|
|
description = "Software KVM Switch / mouse & keyboard sharing software for Local Area Networks"
|
|
version = "0.9.1"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
repository = "https://github.com/feschber/lan-mouse"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = "fat"
|
|
|
|
[dependencies]
|
|
input-event = { path = "input-event", version = "0.2.1" }
|
|
input-emulation = { path = "input-emulation", version = "0.2.1", default-features = false }
|
|
input-capture = { path = "input-capture", version = "0.2.0", default-features = false }
|
|
lan-mouse-cli = { path = "lan-mouse-cli", version = "0.1.0" }
|
|
lan-mouse-gtk = { path = "lan-mouse-gtk", version = "0.1.0", optional = true }
|
|
lan-mouse-ipc = { path = "lan-mouse-ipc", version = "0.1.0" }
|
|
lan-mouse-proto = { path = "lan-mouse-proto", version = "0.1.0" }
|
|
|
|
hickory-resolver = "0.24.1"
|
|
toml = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
log = "0.4.20"
|
|
env_logger = "0.11.3"
|
|
serde_json = "1.0.107"
|
|
tokio = { version = "1.32.0", features = [
|
|
"io-util",
|
|
"io-std",
|
|
"macros",
|
|
"net",
|
|
"process",
|
|
"rt",
|
|
"sync",
|
|
"signal",
|
|
] }
|
|
futures = "0.3.28"
|
|
clap = { version = "4.4.11", features = ["derive"] }
|
|
slab = "0.4.9"
|
|
thiserror = "1.0.61"
|
|
tokio-util = "0.7.11"
|
|
local-channel = "0.1.5"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2.148"
|
|
|
|
[features]
|
|
default = ["wayland", "x11", "xdg_desktop_portal", "libei", "gtk"]
|
|
wayland = ["input-capture/wayland", "input-emulation/wayland"]
|
|
x11 = ["input-capture/x11", "input-emulation/x11"]
|
|
xdg_desktop_portal = ["input-emulation/xdg_desktop_portal"]
|
|
libei = ["input-event/libei", "input-capture/libei", "input-emulation/libei"]
|
|
gtk = ["dep:lan-mouse-gtk"]
|