Compare commits

...

3 Commits

Author SHA1 Message Date
Julian Ospald a951e61a6c
Update libnotify deps 2017-09-02 01:00:43 +02:00
Julian Ospald d830a339e1
Update libnotify-sys deps 2017-09-02 00:59:43 +02:00
Julian Ospald 843fb0c731
Fix build against latest glib 2017-07-19 19:47:08 +02:00
4 changed files with 43 additions and 35 deletions

View File

@ -1,18 +1,24 @@
[package]
name = "libnotify"
version = "1.0.1"
authors = ["Mika Attila <radiantstatue@gmail.com>", "Julian Ospald <hasufell@posteo.de>"]
license = "MIT"
authors = [
"Mika Attila <radiantstatue@gmail.com>",
"Julian Ospald <hasufell@posteo.de>",
]
description = "Rust bindings to libnotify"
documentation = "https://hasufell.github.io/rust-libnotify/libnotify/"
keywords = [
"libnotify",
"notification",
]
license = "MIT"
name = "libnotify"
readme = "README.md"
repository = "https://github.com/hasufell/rust-libnotify"
documentation = "https://hasufell.github.io/rust-libnotify/libnotify/"
keywords = ["libnotify", "notification"]
version = "1.0.2"
[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 = "^0.2.0"
gdk-pixbuf-sys = "^0.4.0"
glib = "^0.3.1"
glib-sys = "^0.4.0"
gobject-sys = "^0.4.0"
libnotify-sys = "^1.0.1"

2
gir

@ -1 +1 @@
Subproject commit 89daf8f60096fb80b7a1eff67feb0bf1bf165ec4
Subproject commit ac9a8dadb62d003af9f0c6ed46e82ff0971125e5

View File

@ -1,30 +1,30 @@
[build-dependencies]
pkg-config = ">=0.3.7"
[dependencies]
bitflags = "^0.9.0"
libc = "^0.2.0"
[dependencies.gdk-pixbuf-sys]
version = "^0.3.4"
[dependencies.glib-sys]
version = "^0.3.4"
[dependencies.gobject-sys]
version = "^0.3.4"
[lib]
name = "libnotify_sys"
[package]
authors = ["Mika Attila <radiantstatue@gmail.com>", "Julian Ospald <hasufell@posteo.de>"]
authors = [
"Mika Attila <radiantstatue@gmail.com>",
"Julian Ospald <hasufell@posteo.de>",
]
build = "build.rs"
description = "FFI bindings to libnotify"
keywords = ["libnotify", "notification"]
keywords = [
"libnotify",
"notification",
]
license = "MIT"
links = "libnotify"
name = "libnotify-sys"
readme = "README.md"
repository = "https://github.com/hasufell/rust-libnotify"
version = "1.0.0"
version = "1.0.1"
[build-dependencies]
pkg-config = ">=0.3.9"
[dependencies]
bitflags = "^0.9.1"
gdk-pixbuf-sys = "^0.4.0"
glib-sys = "^0.4.0"
gobject-sys = "^0.4.0"
libc = "^0.2.30"
[lib]
name = "libnotify_sys"

View File

@ -5,6 +5,8 @@ use glib::translate::*;
use glib;
use glib_ffi;
use gobject_ffi;
use std::mem;
use std::ptr;
use std;