Skip to content

s3rius/rustus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b630710 · Feb 27, 2025
Feb 27, 2025
Feb 22, 2025
Dec 2, 2024
Feb 23, 2022
Feb 22, 2025
Dec 17, 2021
Mar 28, 2022
Feb 17, 2025
Feb 26, 2025
Feb 26, 2025
Feb 27, 2025
Feb 27, 2025
Jan 5, 2022
Dec 2, 2024
Feb 21, 2025
Mar 28, 2022

Repository files navigation

logo

Docker Image Size (latest by date) Docker Image Version (latest semver) GitHub

Production-ready TUS protocol implementation written in Rust.

Features

This implementation has several features to make usage as simple as possible.

  • Rustus is robust, since it uses asynchronous Rust;
  • It can store information about uploads in databases;
  • You can specify directory structure to organize your uploads;
  • It has a lot of hooks options, and hooks can be combined.
  • Highly configurable;

Please check out Documentation for more information about configuration and deploy.

Installation

You can install rustus by 4 different ways.

From source

To build it from source rust must be installed. We don't rely on nightly features, you can use last stable release.

git clone https://github.com/s3rius/rustus.git
cd rustus
cargo install --path .

Binaries

All precompiled binaries available on github releases page. You can download binaries from here, unpack it and run.

./rustus

Make sure that you download version for your cpu and os.

Using docker

One of the most simple ways to run rustus is docker.

To run rustus you just need to run this command

docker run --rm -p "1081:1081" -d "ghcr.io/s3rius/rustus" --log-level "DEBUG"