From 19130f342f9bce1426a8de91ccbb04af9c1697e1 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Mon, 14 Jan 2019 17:52:10 +0100 Subject: [PATCH] lib --- Cargo.toml | 1 + src/lib.rs | 1 + 2 files changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 2ef74dfe29..a35e8b225f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,6 +64,7 @@ gio-sys = { git = "https://github.com/gtk-rs/sys" } glib-sys = { git = "https://github.com/gtk-rs/sys" } gobject-sys = { git = "https://github.com/gtk-rs/sys" } gtk-sys = { git = "https://github.com/gtk-rs/sys" } +pango-sys = { git = "https://github.com/gtk-rs/sys" } cairo-rs = { git = "https://github.com/gtk-rs/cairo" } gio = { git = "https://github.com/gtk-rs/gio" } glib = { git = "https://github.com/gtk-rs/glib" } diff --git a/src/lib.rs b/src/lib.rs index 11bbc73023..2b79bbced9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -170,6 +170,7 @@ extern crate gdk_pixbuf_sys as gdk_pixbuf_ffi; extern crate gobject_sys as gobject_ffi; extern crate gtk_sys as ffi; extern crate cairo_sys as cairo_ffi; +extern crate pango_sys as pango_ffi; #[macro_use] extern crate glib; extern crate gio;