Skip to main content

gdkx11/
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#![allow(clippy::upper_case_acronyms)]
5#![doc = include_str!("../README.md")]
6
7pub use ffi;
8pub use gdk;
9pub use gio;
10pub use glib;
11pub use x11;
12
13#[macro_use]
14mod rt;
15#[allow(unused_imports)]
16mod auto;
17
18pub mod builders;
19
20pub use crate::auto::*;