mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-04-17 02:41:29 +03:00
purge dependencies
This commit is contained in:
committed by
Ferdinand Schober
parent
4db2d37f32
commit
90e83cee87
5
Cargo.lock
generated
5
Cargo.lock
generated
@@ -1253,7 +1253,6 @@ dependencies = [
|
|||||||
"tokio",
|
"tokio",
|
||||||
"wayland-client",
|
"wayland-client",
|
||||||
"wayland-protocols",
|
"wayland-protocols",
|
||||||
"wayland-protocols-misc",
|
|
||||||
"wayland-protocols-wlr",
|
"wayland-protocols-wlr",
|
||||||
"windows 0.54.0",
|
"windows 0.54.0",
|
||||||
"x11",
|
"x11",
|
||||||
@@ -1347,12 +1346,10 @@ version = "0.8.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-channel",
|
"async-channel",
|
||||||
"async-trait",
|
|
||||||
"clap",
|
"clap",
|
||||||
"endi",
|
"endi",
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"futures",
|
"futures",
|
||||||
"futures-core",
|
|
||||||
"glib-build-tools",
|
"glib-build-tools",
|
||||||
"gtk4",
|
"gtk4",
|
||||||
"hickory-resolver",
|
"hickory-resolver",
|
||||||
@@ -1363,8 +1360,6 @@ dependencies = [
|
|||||||
"libadwaita",
|
"libadwaita",
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
"num_enum",
|
|
||||||
"once_cell",
|
|
||||||
"serde",
|
"serde",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"slab",
|
"slab",
|
||||||
|
|||||||
@@ -30,15 +30,11 @@ log = "0.4.20"
|
|||||||
env_logger = "0.11.3"
|
env_logger = "0.11.3"
|
||||||
serde_json = "1.0.107"
|
serde_json = "1.0.107"
|
||||||
tokio = {version = "1.32.0", features = ["io-util", "io-std", "macros", "net", "process", "rt", "sync", "signal"] }
|
tokio = {version = "1.32.0", features = ["io-util", "io-std", "macros", "net", "process", "rt", "sync", "signal"] }
|
||||||
async-trait = "0.1.73"
|
|
||||||
futures = "0.3.28"
|
futures = "0.3.28"
|
||||||
futures-core = "0.3.28"
|
|
||||||
clap = { version="4.4.11", features = ["derive"] }
|
clap = { version="4.4.11", features = ["derive"] }
|
||||||
gtk = { package = "gtk4", version = "0.8.1", features = ["v4_2"], optional = true }
|
gtk = { package = "gtk4", version = "0.8.1", features = ["v4_2"], optional = true }
|
||||||
adw = { package = "libadwaita", version = "0.6.0", features = ["v1_1"], optional = true }
|
adw = { package = "libadwaita", version = "0.6.0", features = ["v1_1"], optional = true }
|
||||||
async-channel = { version = "2.1.1", optional = true }
|
async-channel = { version = "2.1.1", optional = true }
|
||||||
once_cell = "1.19.0"
|
|
||||||
num_enum = "0.7.2"
|
|
||||||
hostname = "0.4.0"
|
hostname = "0.4.0"
|
||||||
slab = "0.4.9"
|
slab = "0.4.9"
|
||||||
endi = "1.1.0"
|
endi = "1.1.0"
|
||||||
|
|||||||
@@ -23,7 +23,6 @@ once_cell = "1.19.0"
|
|||||||
wayland-client = { version="0.31.1", optional = true }
|
wayland-client = { version="0.31.1", optional = true }
|
||||||
wayland-protocols = { version="0.31.0", features=["client", "staging", "unstable"], optional = true }
|
wayland-protocols = { version="0.31.0", features=["client", "staging", "unstable"], optional = true }
|
||||||
wayland-protocols-wlr = { version="0.2.0", features=["client"], optional = true }
|
wayland-protocols-wlr = { version="0.2.0", features=["client"], optional = true }
|
||||||
wayland-protocols-misc = { version="0.2.0", features=["client"], optional = true }
|
|
||||||
x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true }
|
x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true }
|
||||||
ashpd = { version = "0.8", default-features = false, features = ["tokio"], optional = true }
|
ashpd = { version = "0.8", default-features = false, features = ["tokio"], optional = true }
|
||||||
reis = { version = "0.2", features = [ "tokio" ], optional = true }
|
reis = { version = "0.2", features = [ "tokio" ], optional = true }
|
||||||
@@ -44,6 +43,6 @@ windows = { version = "0.54.0", features = [
|
|||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["wayland", "x11", "libei"]
|
default = ["wayland", "x11", "libei"]
|
||||||
wayland = ["dep:wayland-client", "dep:wayland-protocols", "dep:wayland-protocols-wlr", "dep:wayland-protocols-misc" ]
|
wayland = ["dep:wayland-client", "dep:wayland-protocols", "dep:wayland-protocols-wlr" ]
|
||||||
x11 = ["dep:x11"]
|
x11 = ["dep:x11"]
|
||||||
libei = ["dep:reis", "dep:ashpd"]
|
libei = ["dep:reis", "dep:ashpd"]
|
||||||
|
|||||||
Reference in New Issue
Block a user