transmission 0.3.1

A safe ergonomic wrapper for the Transmission BitTorrent library.
1
2
3
4
5
6
7
8
9
10
11
12
//! 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.

// Re-exports
pub mod client;
pub mod error;
pub mod torrent;

pub use client::{Client, ClientConfig};
pub use torrent::{Torrent, TorrentBuilder};