mtorrent_core/lib.rs
1//! Basic types for building asynchronous Tokio-based BitTorrent clients.
2
3/// Utilities for managing data.
4pub mod data;
5
6/// Processing of the initial input.
7pub mod input;
8
9/// Fundamentals for the peer wire protocol. Example usage can be found [here](https://github.com/DanglingPointer/mtorrent/tree/7aeacb6b70e19a36ef4c1db868f3e54a0755e4a0/mtorrent/src/ops/peer).
10pub mod pwp;
11
12/// Implementation of the tracker protocol. Example usage can be found [here](https://github.com/DanglingPointer/mtorrent/blob/7aeacb6b70e19a36ef4c1db868f3e54a0755e4a0/mtorrent/src/ops/announces.rs).
13pub mod trackers;