Find a file
dependabot[bot] 9575370ea4 Bump clap from 3.2.8 to 3.2.16
Bumps [clap](https://github.com/clap-rs/clap) from 3.2.8 to 3.2.16.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/v3.2.8...v3.2.16)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-08-02 21:29:20 +03:00
.github buymeacoffee 2020-09-18 04:16:18 +03:00
contrib/OpenRC Add OpenRC example scripts 2022-01-29 20:42:23 +02:00
docs docs: add curl examples 2020-08-23 23:24:27 +03:00
src fix issue #114 2022-01-29 20:08:54 +02:00
.gitignore Initial Commit 2018-06-08 18:35:22 +03:00
.travis.yml Added travis-ci configuration 2018-06-12 20:23:49 +03:00
Cargo.lock Bump clap from 3.2.8 to 3.2.16 2022-08-02 21:29:20 +03:00
Cargo.toml Bump tokio from 1.17.0 to 1.19.2 2022-07-01 09:49:36 +03:00
Dockerfile Dockerfile: do not hardcode --jobs switch when cargo build'ing, but allow build args. 2022-08-02 21:28:23 +03:00
LICENSE removed line from license 2018-12-07 02:18:56 +02:00
README.md buymeacoffee 2020-09-18 04:16:18 +03:00
rustfmt.toml add rustfmt 2020-05-14 01:22:59 +03:00
udpt.toml update docs 2020-05-14 01:22:59 +03:00

UDPT

UDPT is a UDP based torrent tracker which fully implements BEP-15.

This project was written in Rust, it is a complete rewrite of a previous C/C++ UDPT project (which is still currently available in the v2.1 tag of the repository).

Features

  • UDP torrent tracking server
  • In memory database
  • Choice of Dynamic/Static/Private tracker modes
  • Ability to block a torrent from being tracked
  • HTTP REST API for management
  • Logging
  • Windows Service or Linux/Unix daemon

Getting started

The easiest way is to get built binaries from Releases, but building from sources should be fairly easy as well:

git clone https://github.com/naim94a/udpt.git
cd udpt
cargo build --release

Contributing

Please report any bugs you find to our issue tracker. Ideas and feature requests are welcome as well!

Any pull request targeting existing issues would be very much appreciated.

If you like this project and want to buy me a coffee, there's a link for that:

Buy Me A Coffee

Why was UDPT rewritten in rust?

For a few reasons,

  1. Rust makes it harder to make mistakes than C/C++, It provides memory safety without runtime cost.
  2. Rust allows easier cross-platform development with it's powerful standard library.
  3. Integrated tests and benchmarks.

UDPT was originally developed for fun in 2012 by @naim94a.