1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
diff -urN notify-rust-4.0.0/Cargo.toml notify-rust-4.0.0-patched/Cargo.toml
--- notify-rust-4.0.0/Cargo.toml 2020-06-06 16:32:09.000000000 +0100
+++ notify-rust-4.0.0-patched/Cargo.toml 2020-10-28 21:49:40.866649254 +0100
@@ -36,7 +36,7 @@
[dependencies]
[dev-dependencies.color-backtrace]
-version = "0.3"
+version = "0.4"
[dev-dependencies.ctor]
version = "0.1.12"
@@ -56,7 +56,3 @@
[target."cfg(all(unix, not(target_os = \"macos\")))".dependencies.lazy_static]
version = "1.4"
optional = true
-[target."cfg(target_os=\"macos\")".dependencies.mac-notification-sys]
-version = "0.3"
-[target."cfg(target_os=\"windows\")".dependencies.winrt-notification]
-version = "0.2"
diff -urN notify-rust-4.0.0/Cargo.toml.orig notify-rust-4.0.0-patched/Cargo.toml.orig
--- notify-rust-4.0.0/Cargo.toml.orig 2020-06-06 16:31:18.000000000 +0100
+++ notify-rust-4.0.0-patched/Cargo.toml.orig 2020-10-28 21:51:25.599469465 +0100
@@ -23,15 +23,9 @@
[dependencies]
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies]
-dbus = "0.8"
+dbus = "0.9"
lazy_static = { version = "1.4", optional = true }
-image = { version = "0.22", optional = true }
-
-[target.'cfg(target_os="macos")'.dependencies]
-mac-notification-sys = "0.3"
-
-[target.'cfg(target_os="windows")'.dependencies]
-winrt-notification = "0.2"
+image = { version = "0.23", optional = true }
[features]
default = []
@@ -40,8 +34,8 @@
images = ["image", "lazy_static"]
[dev-dependencies]
-color-backtrace = "0.3"
-ctor = "0.1.12"
+color-backtrace = "0.4"
+ctor = "0.1"
[[example]]
name = "images"
|