19 lines
734 B
TOML
19 lines
734 B
TOML
[package]
|
|
name = "libnotify"
|
|
version = "1.0.1"
|
|
authors = ["Mika Attila <radiantstatue@gmail.com>", "Julian Ospald <hasufell@posteo.de>"]
|
|
license = "MIT"
|
|
description = "Rust bindings to libnotify"
|
|
readme = "README.md"
|
|
repository = "https://github.com/hasufell/rust-libnotify"
|
|
documentation = "https://hasufell.github.io/rust-libnotify/libnotify/"
|
|
keywords = ["libnotify", "notification"]
|
|
|
|
[dependencies]
|
|
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" }
|