1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
[package]
name = "async_http_range_reader"
authors = ["Bas Zalmstra <zalmstra.bas@gmail.com>"]
version = "0.9.1"
edition = "2021"
description = "A library for streaming reading of files over HTTP using range requests"
license = "MIT"
repository = "https://github.com/prefix-dev/async_http_range_reader"
exclude = ["test-data/*"]
[dependencies]
futures = "0.3.28"
http-content-range = "0.2.0"
itertools = "0.13.0"
bisection = "0.1.0"
memmap2 = "0.9.0"
reqwest = { version = "0.12.3", default-features = false, features = ["stream"] }
reqwest-middleware = "0.4.0"
tokio = { version = "1.33.0", default-features = false }
tokio-stream = { version = "0.1.14", features = ["sync"] }
tokio-util = "0.7.9"
thiserror = "1.0.50"
tracing = "0.1.40"
[dev-dependencies]
axum = { version = "0.7.5", default-features = false, features = ["tokio", "http1"] }
tokio = { version = "1.33.0", default-features = false, features = ["macros", "test-util"] }
tower-http = { version = "0.6.1", default-features = false, features = ["fs"] }
async_zip = { version = "0.0.17", default-features = false, features = ["tokio"] }
assert_matches = "1.5.0"
rstest = { version = "0.23.0" }
url = { version = "2.4.1" }
|