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
#![allow(deprecated)]

extern crate gmime_sys as ffi;
extern crate glib_sys as glib_ffi;
extern crate gobject_sys as gobject_ffi;
extern crate gio_sys as gio_ffi;

#[macro_use]
extern crate glib;
extern crate gio;
#[macro_use]
extern crate bitflags;

extern crate libc;


pub use glib::{
    Bytes,
    Error,
    Variant,
    VariantType,
    IOCondition,
    SeekType,
    Source,
    Priority,
    DateTime,
    ChecksumType
};

pub use gio::File;


#[cfg_attr(feature = "cargo-clippy", allow(too_many_arguments))]
#[cfg_attr(feature = "cargo-clippy", allow(useless_transmute))]
mod auto;
pub use auto::*;

mod enums;
pub use enums::*;

mod message;
pub use message::*;

mod message_partial;
pub use message_partial::*;

mod parser_options;
pub use parser_options::*;