forked from gtk-rs/gir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.rs
52 lines (48 loc) · 1.11 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#![allow(clippy::cognitive_complexity)]
#![allow(clippy::let_and_return)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::write_literal)]
#![deny(bare_trait_objects)]
#![deny(elided_lifetimes_in_paths)]
/// Log warning only if type in generated library
macro_rules! warn_main {
($tid: expr, $target:expr, $($arg:tt)*) => (
if $tid.ns_id == crate::library::MAIN_NAMESPACE {
log::warn!($target, $($arg)*);
}
);
}
//generated by build.rs
mod gir_version;
pub mod analysis;
mod case;
mod chunk;
mod codegen;
mod config;
mod consts;
mod custom_type_glib_priority;
mod env;
mod file_saver;
pub mod fmt;
mod git;
pub mod library;
mod library_postprocessing;
mod library_preprocessing;
mod nameutil;
mod parser;
mod traits;
pub mod update_version;
mod version;
mod visitors;
mod writer;
mod xmlparser;
pub use crate::{
analysis::{
class_hierarchy::run as class_hierarchy_run, namespaces::run as namespaces_run,
run as analysis_run, symbols::run as symbols_run,
},
codegen::generate as codegen_generate,
config::{Config, WorkMode},
env::Env,
library::Library,
};