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
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
extern crate byteorder;
extern crate uuid;
extern crate libc;

#[macro_use]
mod macros;

mod utils;
mod connection;
mod models;
mod rich_presence;

pub mod client;

pub use client::Client;

#[cfg(feature = "rich_presence")]
pub use rich_presence::*;

#[cfg(unix)]
pub use connection::UnixConnection;