From 4374b4fc1a9a7c0506034d86707fd3288d347f9b Mon Sep 17 00:00:00 2001 From: Fabian-Lars <30730186+FabianLars@users.noreply.github.com> Date: Tue, 31 Mar 2026 10:33:38 +0200 Subject: [PATCH] chore(notification): remove unused dev-deps (#3372) --- Cargo.lock | 28 ---------------------------- plugins/notification/Cargo.toml | 5 ----- 2 files changed, 33 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fef4b8a3..4d480c82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1024,16 +1024,6 @@ dependencies = [ "error-code", ] -[[package]] -name = "color-backtrace" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2123a5984bd52ca861c66f66a9ab9883b27115c607f801f86c1bc2a84eb69f0f" -dependencies = [ - "backtrace", - "termcolor", -] - [[package]] name = "colorchoice" version = "1.0.3" @@ -3494,12 +3484,6 @@ dependencies = [ "time", ] -[[package]] -name = "maplit" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" - [[package]] name = "markup5ever" version = "0.14.1" @@ -6850,10 +6834,7 @@ dependencies = [ name = "tauri-plugin-notification" version = "2.3.3" dependencies = [ - "color-backtrace", - "ctor", "log", - "maplit", "notify-rust", "rand 0.9.0", "serde", @@ -7245,15 +7226,6 @@ dependencies = [ "utf-8", ] -[[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.69" diff --git a/plugins/notification/Cargo.toml b/plugins/notification/Cargo.toml index f7003383..cd853c44 100644 --- a/plugins/notification/Cargo.toml +++ b/plugins/notification/Cargo.toml @@ -43,10 +43,5 @@ windows-version = { version = "0.1", optional = true } [target."cfg(any(target_os = \"macos\", windows, target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies] notify-rust = "4.11" -[dev-dependencies] -color-backtrace = "0.7" -ctor = "0.2" -maplit = "1" - [features] windows7-compat = ["win7-notifications", "windows-version"]