From 30dcdfaf55986fbe793cf56c122d80ba1712dd93 Mon Sep 17 00:00:00 2001 From: Nickiel12 <35903114+Nickiel12@users.noreply.github.com> Date: Mon, 20 May 2024 22:24:09 -0600 Subject: [PATCH] removed unused deps --- Cargo.lock | 68 ------------------------------------------------------ Cargo.toml | 2 -- 2 files changed, 70 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd55c34..3a314f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1117,20 +1117,6 @@ dependencies = [ "libc", ] -[[package]] -name = "interprocess" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d5f0e3c218e7a86a6712fd3adc84672304f9e839402b866685b9117a077c37f" -dependencies = [ - "futures-core", - "libc", - "recvmsg", - "tokio", - "widestring", - "windows-sys 0.52.0", -] - [[package]] name = "io-kit-sys" version = "0.4.1" @@ -1179,10 +1165,8 @@ dependencies = [ "gstreamer-app", "gstreamer-video", "gtk4", - "interprocess", "log", "serde", - "simplelog", "snafu", "tokio", "tokio-tungstenite", @@ -1379,15 +1363,6 @@ dependencies = [ "libc", ] -[[package]] -name = "num_threads" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" -dependencies = [ - "libc", -] - [[package]] name = "object" version = "0.32.2" @@ -1632,12 +1607,6 @@ dependencies = [ "getrandom", ] -[[package]] -name = "recvmsg" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3edd4d5d42c92f0a659926464d4cce56b562761267ecf0f469d85b7de384175" - [[package]] name = "ron" version = "0.8.1" @@ -1758,17 +1727,6 @@ dependencies = [ "lazy_static", ] -[[package]] -name = "simplelog" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0" -dependencies = [ - "log", - "termcolor", - "time", -] - [[package]] name = "slab" version = "0.4.9" @@ -1856,15 +1814,6 @@ version = "0.12.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" -[[package]] -name = "termcolor" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" -dependencies = [ - "winapi-util", -] - [[package]] name = "thiserror" version = "1.0.58" @@ -1903,9 +1852,7 @@ checksum = "c8248b6521bb14bc45b4067159b9b6ad792e2d6d754d6c41fb50e29fefe38749" dependencies = [ "deranged", "itoa", - "libc", "num-conv", - "num_threads", "powerfmt", "serde", "time-core", @@ -2280,12 +2227,6 @@ dependencies = [ "wasm-bindgen", ] -[[package]] -name = "widestring" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" - [[package]] name = "winapi" version = "0.3.9" @@ -2302,15 +2243,6 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -[[package]] -name = "winapi-util" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" -dependencies = [ - "winapi", -] - [[package]] name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" diff --git a/Cargo.toml b/Cargo.toml index 8677cca..1e3a714 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,11 +21,9 @@ gst-plugin-gtk4 = { version = "0.12.2", features = ["gtk_v4_12"] } gtk = { version = "0.8.1", package = "gtk4", features = ["v4_12"] } log = "0.4.21" serde = { version = "1.0.197", features = ["derive"] } -simplelog = "0.12.2" tokio = { version = "1.37.0", features = ["rt-multi-thread", "time"] } tokio-tungstenite = "0.21.0" toml = "0.8.12" -interprocess = { version = "2.0.0", features = ["tokio"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["tracing-log"] } tracing-appender = "0.2.3"