pangocairo/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4#![doc = include_str!("../README.md")]
5
6pub use cairo;
7pub use glib;
8pub use pango;
9pub use pango_cairo_sys as ffi;
10
11mod auto;
12
13pub use crate::auto::*;
14pub mod prelude;
15pub mod functions {
16    pub use super::auto::functions::*;
17}
18
19mod font_map;