Skip to main content

libglycin_rebind/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![allow(clippy::needless_doctest_main)]
3//! # Rust Glycin bindings
4//!
5//! This library contains safe Rust bindings for [Glycin](https://gitlab.gnome.org/GNOME/glycin).
6
7// Re-export the -sys bindings
8pub use {ffi, gio, glib};
9
10macro_rules! assert_initialized_main_thread {
11    () => {};
12}
13
14macro_rules! skip_assert_initialized {
15    () => {};
16}
17
18#[allow(unused_imports)]
19#[allow(clippy::let_and_return)]
20#[allow(clippy::type_complexity)]
21mod auto;
22
23pub use auto::*;
24
25pub mod builders {
26    pub use super::auto::builders::*;
27}
28
29mod cicp;