1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: avoid mac-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,10 +29,6 @@
log = "0.4"
futures-lite = { version = "2.6.0"}
-[target.'cfg(target_os="macos")'.dependencies]
-mac-notification-sys = "0.6"
-chrono = { version = "0.4", optional = true}
-
[target.'cfg(target_os="windows")'.dependencies]
winrt-notification = { package = "tauri-winrt-notification", version = "0.7" }
|