This commit is contained in:
Ospald, Julian 2017-07-11 16:50:07 +02:00
parent 67f9f7c89b
commit 441689018a
5 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
target
Cargo.lock
*.bk
*~

4
.gitmodules vendored Normal file
View 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

@ -0,0 +1 @@
Subproject commit 5b26d19aa92316a9555b0b22d2d7c3a2721a33dc

View File

@ -6,7 +6,7 @@ authors = ["Julian Ospald <hasufell@posteo.de>"]
[dependencies]
alsa = "^0.1.8"
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"
flexi_logger = "^0.5.1"
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf.git" }
@ -24,7 +24,7 @@ serde_derive = "^1.0.9"
toml = "^0.4.2"
which = "*"
xdg = "*"
libnotify = { path = "3rdparty/rust-libnotify", optional = true }
libnotify = { path = "3rdparty/libnotify", optional = true }
[dependencies.gtk]
git = "https://github.com/gtk-rs/gtk.git"

View File

@ -11,7 +11,6 @@ error_chain! {
Alsa(alsa::Error);
IO(std::io::Error);
Toml(toml::de::Error);
Glib(glib::BoolError);
}
}