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(clippy::manual_c_str_literals)]
13#[allow(unused_imports)]
14mod auto;
15
16pub mod subclass;
17
18mod pixbuf;
19mod pixbuf_animation;
20mod pixbuf_animation_iter;
21pub mod prelude;
22
23pub use self::pixbuf_animation_iter::PixbufAnimationIter;
24pub use crate::auto::*;