Update
This commit is contained in:
parent
67f9f7c89b
commit
441689018a
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
target
|
target
|
||||||
Cargo.lock
|
Cargo.lock
|
||||||
*.bk
|
*.bk
|
||||||
|
*~
|
||||||
|
4
.gitmodules
vendored
Normal file
4
.gitmodules
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
[submodule "3rdparty/libnotify"]
|
||||||
|
path = 3rdparty/libnotify
|
||||||
|
url = https://github.com/hasufell/rust-libnotify.git
|
||||||
|
branch = git-deps
|
1
3rdparty/libnotify
vendored
Submodule
1
3rdparty/libnotify
vendored
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 5b26d19aa92316a9555b0b22d2d7c3a2721a33dc
|
@ -6,7 +6,7 @@ authors = ["Julian Ospald <hasufell@posteo.de>"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
alsa = "^0.1.8"
|
alsa = "^0.1.8"
|
||||||
alsa-sys = "^0.1.1"
|
alsa-sys = "^0.1.1"
|
||||||
error-chain = { path = "3rdparty/error-chain" }
|
error-chain = { git = "https://github.com/hasufell/error-chain.git", branch = "PR-from-error" }
|
||||||
ffi = "^0.0.2"
|
ffi = "^0.0.2"
|
||||||
flexi_logger = "^0.5.1"
|
flexi_logger = "^0.5.1"
|
||||||
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf.git" }
|
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf.git" }
|
||||||
@ -24,7 +24,7 @@ serde_derive = "^1.0.9"
|
|||||||
toml = "^0.4.2"
|
toml = "^0.4.2"
|
||||||
which = "*"
|
which = "*"
|
||||||
xdg = "*"
|
xdg = "*"
|
||||||
libnotify = { path = "3rdparty/rust-libnotify", optional = true }
|
libnotify = { path = "3rdparty/libnotify", optional = true }
|
||||||
|
|
||||||
[dependencies.gtk]
|
[dependencies.gtk]
|
||||||
git = "https://github.com/gtk-rs/gtk.git"
|
git = "https://github.com/gtk-rs/gtk.git"
|
||||||
|
@ -11,7 +11,6 @@ error_chain! {
|
|||||||
Alsa(alsa::Error);
|
Alsa(alsa::Error);
|
||||||
IO(std::io::Error);
|
IO(std::io::Error);
|
||||||
Toml(toml::de::Error);
|
Toml(toml::de::Error);
|
||||||
Glib(glib::BoolError);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user