https://github.com/s3rius/rustus
TUS protocol implementation in Rust.
https://github.com/s3rius/rustus
actix-web async file-upload-server fileupload helm rust rust-async rust-lang tus tus-protocol
Last synced: 7 days ago
JSON representation
TUS protocol implementation in Rust.
- Host: GitHub
- URL: https://github.com/s3rius/rustus
- Owner: s3rius
- License: mit
- Created: 2021-12-17T23:40:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-03-30T23:32:15.000Z (about 2 months ago)
- Last Synced: 2025-05-13T00:03:44.855Z (10 days ago)
- Topics: actix-web, async, file-upload-server, fileupload, helm, rust, rust-async, rust-lang, tus, tus-protocol
- Language: Rust
- Homepage: https://s3rius.github.io/rustus/
- Size: 8.41 MB
- Stars: 182
- Watchers: 8
- Forks: 13
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## 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](https://s3rius.github.io/rustus/) 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.```bash
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](https://github.com/s3rius/rustus/releases), unpack it and run.```bash
./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
```bash
docker run --rm -p "1081:1081" -d "ghcr.io/s3rius/rustus" --log-level "DEBUG"
```