1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Native rust implementation of the D-Bus wire protocol.  Supports TCP and UDS transports, as
//! well as the EXTERNAL and ANONYMOUS authentication types.

extern crate dbus_serialize;
extern crate rustc_serialize;
extern crate unix_socket;
extern crate libc;

pub mod demarshal;
pub mod marshal;
pub mod message;
pub mod connection;

mod address;
pub mod addr {
    pub use address::UnescapeError;
    pub use address::Error as AddressError;
    pub use address::ServerAddressError;
}