6 releases (3 breaking)

0.4.0 Dec 29, 2023
0.3.0 Sep 10, 2023
0.2.2 Sep 10, 2023
0.1.0 Sep 9, 2023

#12 in #body

Download history 3/week @ 2023-12-24 10/week @ 2023-12-31 3/week @ 2024-01-07 3/week @ 2024-01-14 13/week @ 2024-01-21 11/week @ 2024-02-18 28/week @ 2024-02-25 24/week @ 2024-03-03 30/week @ 2024-03-10 14/week @ 2024-03-17 37/week @ 2024-03-24 31/week @ 2024-03-31

86 downloads per month

MIT license

23KB
391 lines

axum-range

HTTP range responses for axum.

Documentation.

MIT license.

Example usage

use axum::TypedHeader;
use axum::headers::Range;

use tokio::fs::File;

use axum_range::Ranged;
use axum_range::KnownSize;

async fn file(range: Option<TypedHeader<Range>>) -> Ranged<KnownSize<File>> {
    let file = File::open("archlinux-x86_64.iso").await.unwrap();
    let body = KnownSize::file(file).await.unwrap();
    let range = range.map(|TypedHeader(range)| range);
    Ranged::new(range, body)
}

lib.rs:

axum-range

HTTP range responses for axum.

Fully generic, supports any body implementing the RangeBody trait.

Any type implementing both AsyncRead and AsyncSeekStart can be used the KnownSize adapter struct. There is also special cased support for tokio::fs::File, see the KnownSize::file method.

AsyncSeekStart is a trait defined by this crate which only allows seeking from the start of a file. It is automatically implemented for any type implementing AsyncSeek.

use axum::Router;
use axum::routing::get;
use axum_extra::TypedHeader;
use axum_extra::headers::Range;

use tokio::fs::File;

use axum_range::Ranged;
use axum_range::KnownSize;

async fn file(range: Option<TypedHeader<Range>>) -> Ranged<KnownSize<File>> {
    let file = File::open("The Sims 1 - The Complete Collection.rar").await.unwrap();
    let body = KnownSize::file(file).await.unwrap();
    let range = range.map(|TypedHeader(range)| range);
    Ranged::new(range, body)
}

#[tokio::main]
async fn main() {
    // build our application with a single route
    let _app = Router::<()>::new().route("/", get(file));

    // run it with hyper on localhost:3000
    #[cfg(feature = "run_server_in_example")]
    axum::Server::bind(&"0.0.0.0:3000".parse().unwrap())
       .serve(_app.into_make_service())
       .await
       .unwrap();
}

Dependencies

~6.5–8.5MB
~151K SLoC