gdk_pixbuf/
lib.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3#![allow(clippy::manual_c_str_literals)]
4#![cfg_attr(docsrs, feature(doc_cfg))]
5#![doc = include_str!("../README.md")]
6
7pub use gdk_pixbuf_sys as ffi;
8pub use gio;
9pub use glib;
10
11#[allow(clippy::too_many_arguments)]
12#[allow(unused_imports)]
13mod auto;
14
15pub mod subclass;
16
17mod pixbuf;
18mod pixbuf_animation;
19mod pixbuf_animation_iter;
20pub mod prelude;
21
22pub use self::pixbuf_animation_iter::PixbufAnimationIter;
23pub use crate::auto::*;