From 159bd96b93b0dafe8e894518f9bc403a7defcb84 Mon Sep 17 00:00:00 2001 From: galister <22305755+galister@users.noreply.github.com> Date: Sun, 14 Apr 2024 14:27:35 +0900 Subject: [PATCH] remove unneeded dep --- Cargo.lock | 82 ------------------------------------------------------ Cargo.toml | 3 +- 2 files changed, 1 insertion(+), 84 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 619505e..e2c59f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1378,18 +1378,6 @@ version = "2.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" -[[package]] -name = "filetime" -version = "0.2.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall 0.4.1", - "windows-sys 0.52.0", -] - [[package]] name = "fixedbitset" version = "0.4.2" @@ -1816,26 +1804,6 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bfa799dd5ed20a7e349f3b4639aa80d74549c81716d9ec4f994c9b5815598306" -[[package]] -name = "inotify" -version = "0.9.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff" -dependencies = [ - "bitflags 1.3.2", - "inotify-sys", - "libc", -] - -[[package]] -name = "inotify-sys" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb" -dependencies = [ - "libc", -] - [[package]] name = "input-linux" version = "0.6.0" @@ -1971,26 +1939,6 @@ dependencies = [ "serde", ] -[[package]] -name = "kqueue" -version = "1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7447f1ca1b7b563588a205fe93dea8df60fd981423a768bc1c0ded35ed147d0c" -dependencies = [ - "kqueue-sys", - "libc", -] - -[[package]] -name = "kqueue-sys" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed9625ffda8729b85e45cf04090035ac368927b8cebc34898e7c120f52e4838b" -dependencies = [ - "bitflags 1.3.2", - "libc", -] - [[package]] name = "lazy_static" version = "1.4.0" @@ -2203,18 +2151,6 @@ version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" -[[package]] -name = "mio" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" -dependencies = [ - "libc", - "log", - "wasi", - "windows-sys 0.48.0", -] - [[package]] name = "moveit" version = "0.6.0" @@ -2310,23 +2246,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "notify" -version = "6.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d" -dependencies = [ - "bitflags 2.5.0", - "filetime", - "inotify", - "kqueue", - "libc", - "log", - "mio", - "walkdir", - "windows-sys 0.48.0", -] - [[package]] name = "nu-ansi-term" version = "0.49.0" @@ -4261,7 +4180,6 @@ dependencies = [ "json5", "libc", "log", - "notify", "once_cell", "openxr", "ovr_overlay", diff --git a/Cargo.toml b/Cargo.toml index c7099e0..76fb90e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,6 @@ vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano", rev = "94f50f wlx-capture = { git = "https://github.com/galister/wlx-capture", tag = "v0.3.8", default-features = false } winit = { version = "0.29.15", optional = true } xdg = "2.5.2" -notify = { version = "6.1.1", default-features = false, optional = true } [features] default = ["openvr", "openxr", "osc", "x11", "wayland"] @@ -63,4 +62,4 @@ openxr = ["dep:openxr"] osc = ["dep:rosc"] x11 = ["wlx-capture/xshm"] wayland = ["wlx-capture/pipewire", "wlx-capture/wlr"] -uidev = ["dep:notify", "dep:winit"] +uidev = ["dep:winit"]