From 90e83cee87276e5d9bff3f568e181d7c5b74605b Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Tue, 2 Jul 2024 21:41:57 +0200 Subject: [PATCH] purge dependencies --- Cargo.lock | 5 ----- Cargo.toml | 4 ---- input-capture/Cargo.toml | 3 +-- 3 files changed, 1 insertion(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1609673..45c5c39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1253,7 +1253,6 @@ dependencies = [ "tokio", "wayland-client", "wayland-protocols", - "wayland-protocols-misc", "wayland-protocols-wlr", "windows 0.54.0", "x11", @@ -1347,12 +1346,10 @@ version = "0.8.0" dependencies = [ "anyhow", "async-channel", - "async-trait", "clap", "endi", "env_logger", "futures", - "futures-core", "glib-build-tools", "gtk4", "hickory-resolver", @@ -1363,8 +1360,6 @@ dependencies = [ "libadwaita", "libc", "log", - "num_enum", - "once_cell", "serde", "serde_json", "slab", diff --git a/Cargo.toml b/Cargo.toml index 1ab76e8..212c3cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,15 +30,11 @@ 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"] } -async-trait = "0.1.73" futures = "0.3.28" -futures-core = "0.3.28" clap = { version="4.4.11", features = ["derive"] } gtk = { package = "gtk4", version = "0.8.1", features = ["v4_2"], optional = true } adw = { package = "libadwaita", version = "0.6.0", features = ["v1_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" slab = "0.4.9" endi = "1.1.0" diff --git a/input-capture/Cargo.toml b/input-capture/Cargo.toml index fca68ed..987d82c 100644 --- a/input-capture/Cargo.toml +++ b/input-capture/Cargo.toml @@ -23,7 +23,6 @@ once_cell = "1.19.0" wayland-client = { version="0.31.1", 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-misc = { version="0.2.0", features=["client"], optional = true } x11 = { version = "2.21.0", features = ["xlib", "xtest"], optional = true } ashpd = { version = "0.8", default-features = false, features = ["tokio"], optional = true } reis = { version = "0.2", features = [ "tokio" ], optional = true } @@ -44,6 +43,6 @@ windows = { version = "0.54.0", features = [ [features] 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"] libei = ["dep:reis", "dep:ashpd"]