2 releases
0.9.3 | Aug 27, 2023 |
---|---|
0.9.2 | Aug 27, 2023 |
25 downloads per month
47KB
932 lines
Rusty_Torrent BitTorrent Client
A BitTorrent client implemented in Rust that allows you to interact with the BitTorrent protocol and download torrents.
Table of Contents
Introduction
This BitTorrent client is designed to provide a simple and functional implementation of the BitTorrent protocol. It supports downloading torrents and interacting with peers to exchange pieces of files.
Features
- Handshake and communication with peers using the BitTorrent protocol.
- Support for downloading torrents in both single-file and multi-file mode.
- Ability to request and download individual pieces from peers.
- Piece verification using SHA-1 hashes to ensure data integrity.
- Logging using the
log
crate for better debugging and tracing.
Getting Started
Prerequisites
- Rust programming language: Install Rust
- Cargo: The Rust package manager, usually installed with Rust.
Installation
- Clone the repository:
git clone https://github.com/ArloFilley/rusty_torrent.git
- Navigate to the project directory:
cd rusty_torrent
- Build the project
cargo build --release
Usage
To use the BitTorrent client, follow these steps:
- Run the compiled binary:
cargo run --release
- Provide the path to a .torrent file:
cargo run --release /path/to/your.torrent
- Provide the path to download
cargo run --release /path/to/your.torrent /path/to/downloads
- Clap help message
A BitTorrent client implemented in Rust that allows you to interact with the BitTorrent protocol and download torrents.
Usage: rusty_torrent [OPTIONS] --torrent-file-path <TORRENT_FILE_PATH> --download-path <DOWNLOAD_PATH>
Options:
-l, --log-file-path <LOG_FILE_PATH>
-t, --torrent-file-path <TORRENT_FILE_PATH>
-d, --download-path <DOWNLOAD_PATH>
-h, --help Print help
-V, --version Print version
The client will start downloading the torrent files and interacting with peers.
How It Works
This BitTorrent client uses Rust's asynchronous programming features to manage connections with peers and perform file downloads. It employs the BitTorrent protocol's handshake and communication mechanisms to exchange pieces of data with other peers in the network. The client also verifies downloaded pieces using SHA-1 hashes provided by the torrent file.
Contributing
Contributions are welcome! If you find any bugs or want to add new features, please feel free to open issues and pull requests on the GitHub repository.
License
This project is licensed under the MIT License.
Dependencies
~9–22MB
~336K SLoC