8 releases (1 stable)
| 1.0.0 | Sep 16, 2025 |
|---|---|
| 0.5.0 | Jan 14, 2025 |
| 0.4.0 | Dec 29, 2023 |
| 0.3.0 | Sep 10, 2023 |
| 0.1.0 | Sep 9, 2023 |
#812 in Network programming
8,950 downloads per month
Used in 3 crates
23KB
398 lines
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();
}
axum-range
HTTP range responses for axum.
MIT license.
Example usage
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("archlinux-x86_64.iso").await.unwrap();
let body = KnownSize::file(file).await.unwrap();
let range = range.map(|TypedHeader(range)| range);
Ranged::new(range, body)
}
Dependencies
~10–14MB
~179K SLoC