1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
//! Ergonomic Rust bindings for the [Transmission](https://transmissionbt.com/) BitTorrent client
//! based on [transmission-sys](https://gitlab.com/tornado-torrent/transmission-sys).
//!
//! Most interaction will be done through the `Client` struct.

#[allow(unused_parens)]

extern crate serde;
extern crate serde_json;

// Re-exports
pub mod client;
mod error;
pub use error::Error;