Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
cf6c840ee7 | |||
385cb3ba6d | |||
|
5b26d19aa9 |
12
Cargo.toml
12
Cargo.toml
@ -10,9 +10,9 @@ documentation = "https://hasufell.github.io/rust-libnotify/libnotify/"
|
||||
keywords = ["libnotify", "notification"]
|
||||
|
||||
[dependencies]
|
||||
gdk-pixbuf = "^0.1.3"
|
||||
gdk-pixbuf-sys = "^0.3.4"
|
||||
glib = "^0.1.3"
|
||||
glib-sys = "^0.3.4"
|
||||
gobject-sys = "^0.3.4"
|
||||
libnotify-sys = "^1.0.0"
|
||||
gdk-pixbuf = { git = "https://github.com/gtk-rs/gdk-pixbuf.git" }
|
||||
gdk-pixbuf-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
glib = { git = "https://github.com/gtk-rs/glib.git" }
|
||||
glib-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
gobject-sys = { git = "https://github.com/gtk-rs/sys" }
|
||||
libnotify-sys = { path = "libnotify-sys" }
|
||||
|
2
gir
2
gir
@ -1 +1 @@
|
||||
Subproject commit 89daf8f60096fb80b7a1eff67feb0bf1bf165ec4
|
||||
Subproject commit ac9a8dadb62d003af9f0c6ed46e82ff0971125e5
|
@ -6,13 +6,13 @@ bitflags = "^0.9.0"
|
||||
libc = "^0.2.0"
|
||||
|
||||
[dependencies.gdk-pixbuf-sys]
|
||||
version = "^0.3.4"
|
||||
git = "https://github.com/gtk-rs/sys"
|
||||
|
||||
[dependencies.glib-sys]
|
||||
version = "^0.3.4"
|
||||
git = "https://github.com/gtk-rs/sys"
|
||||
|
||||
[dependencies.gobject-sys]
|
||||
version = "^0.3.4"
|
||||
git = "https://github.com/gtk-rs/sys"
|
||||
|
||||
[lib]
|
||||
name = "libnotify_sys"
|
||||
|
@ -5,6 +5,8 @@ use glib::translate::*;
|
||||
use glib;
|
||||
use glib_ffi;
|
||||
use gobject_ffi;
|
||||
use std::mem;
|
||||
use std::ptr;
|
||||
use std;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user