glib_unix/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")]
5pub use ffi;
6
7mod auto;
8mod functions;
9
10pub use auto::functions::*;
11pub use functions::*;
12
13pub mod prelude {
14 pub use glib::prelude::*;
15}