1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: avoid windows-specific crate dependencies
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2024-09-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,9 +29,6 @@
log = "0.4"
futures-lite = { version = "2.6.0"}
-[target.'cfg(target_os="windows")'.dependencies]
-winrt-notification = { package = "tauri-winrt-notification", version = "0.7" }
-
[features]
default = ["z"]
# server = []
|