pangocairo/
lib.rs

1// Copyright 2018, The Gtk-rs Project Developers.
2// See the COPYRIGHT file at the top-level directory of this distribution.
3// Licensed under the MIT license, see the LICENSE file or <http://opensource.org/licenses/MIT>
4
5#![allow(deprecated)]
6
7extern crate cairo;
8extern crate cairo_sys;
9extern crate glib_sys;
10extern crate gobject_sys;
11extern crate pango;
12extern crate pango_cairo_sys;
13extern crate pango_sys;
14#[macro_use]
15extern crate glib;
16extern crate bitflags;
17extern crate libc;
18
19pub use glib::Error;
20
21#[cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
22#[cfg_attr(feature = "cargo-clippy", allow(useless_transmute))]
23mod auto;
24pub use auto::*;
25
26mod font_map;
27pub use font_map::*;