soup2 0.2.1

Soup2 crate for Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod auto;
pub use auto::*;

/// Asserts that this is the main thread and `gtk::init` has been called.
macro_rules! assert_initialized_main_thread {
    () => {};
}

macro_rules! skip_assert_initialized {
    () => {};
}

pub(crate) use assert_initialized_main_thread;
pub(crate) use skip_assert_initialized;