3 unstable releases

0.2.1 Sep 9, 2024
0.2.0 May 3, 2023
0.1.1 Apr 7, 2023
0.1.0 Apr 6, 2023

#240 in HTTP server

Download history 8/week @ 2024-07-01 17/week @ 2024-07-15 37/week @ 2024-07-29 3/week @ 2024-08-05 60/week @ 2024-08-12 5/week @ 2024-08-26 26/week @ 2024-09-02 167/week @ 2024-09-09 91/week @ 2024-09-16 36/week @ 2024-09-23 13/week @ 2024-09-30 80/week @ 2024-10-07 15/week @ 2024-10-14

150 downloads per month

MIT/Apache

410KB
1K SLoC

Meteoritus

A tus server integration for Rocket framework.

Getting started:

Meteoritus is a Fairing that implements tus protocol on top of Rocket framework, so in order to use it you'll need the following dependencies in Cargo.toml:

Current version v0.2.0 See changelog

[dependencies]
rocket = "0.5.0-rc.2"
meteoritus = "0.2.0"

Then attach Meteoritus to your Rocket server on launch:

#[macro_use] extern crate rocket;
use rocket::data::ByteUnit;
use meteoritus::Meteoritus;

#[get("/")]
fn hello() -> &'static str {
    "Hello, world!"
}

#[launch]
fn rocket() -> _ {
let meteoritus = Meteoritus::new()
        .mount_to("/api/files")
        .with_temp_path("./tmp/uploads")
        .with_max_size(ByteUnit::Gibibyte(1))
          .on_creation(|ctx| {
                println!("on_creation: {:?}", ctx);
                Ok(())
           })
          .on_created(|ctx| {
                println!("on_created: {:?}", ctx);
           })
          .on_completed(|ctx| {
               println!("on_completed: {:?}", ctx);
           })
          .on_termination(|ctx| {
               println!("on_termination: {:?}", ctx);
           })
        .build();
    
    rocket::build()
        .attach(meteoritus)
        .mount("/", routes![hello])
}

For more detailed information check out the complete Api documentation.

Dependencies

~16–47MB
~801K SLoC