transmission 0.3.1

A safe ergonomic wrapper for the Transmission BitTorrent library.
1
2
3
4
5
6
7
8
9
pub mod torrent;
mod torrentbuilder;
pub mod torrentinfo;
pub mod torrentstats;

pub use torrent::{Torrent, Priority};
pub use torrentbuilder::TorrentBuilder;
pub use torrentinfo::TorrentInfo;
pub use torrentstats::{TorrentState, TorrentStats};