discord-rpc-client/src/lib.rs

26 lines
464 B
Rust
Raw Normal View History

2018-03-22 15:15:47 -04:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
extern crate serde;
#[macro_use]
extern crate serde_json;
2018-03-24 10:15:48 -04:00
extern crate byteorder;
extern crate uuid;
extern crate bytes;
2018-12-05 18:58:26 -05:00
extern crate parking_lot;
extern crate crossbeam_channel;
#[cfg(windows)]
extern crate named_pipe;
2018-03-22 13:12:41 -04:00
#[macro_use]
mod macros;
2018-03-29 16:57:00 -04:00
mod error;
2018-03-25 14:55:38 -04:00
mod utils;
mod connection;
pub mod models;
2018-03-22 13:12:41 -04:00
pub mod client;
pub use client::Client;
pub use connection::{Connection, SocketConnection};