rdest 0.1.0

rdest is simple BitTorrent client, currently supporting BEP3 specification.
Documentation
// Copyright 2020 Mateusz Janda.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// https://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

pub mod bitfield;
pub mod cancel;
pub mod choke;
pub mod handshake;
pub mod have;
pub mod interested;
pub mod keep_alive;
pub mod not_interested;
pub mod piece;
pub mod request;
pub mod unchoke;

pub use bitfield::Bitfield;
pub use cancel::Cancel;
pub use choke::Choke;
pub use handshake::Handshake;
pub use have::Have;
pub use interested::Interested;
pub use keep_alive::KeepAlive;
pub use not_interested::NotInterested;
pub use piece::Piece;
pub use request::Request;
pub use unchoke::Unchoke;