[package]
edition = "2024"
name = "bucket_dl"
version = "0.4.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A multithreaded downloader with the purpose of faster downloads by splitting it into several requests, rebuilding the data client-side."
readme = "README.md"
keywords = [
"download",
"download+manager",
"multithreaded",
]
categories = [
"web-programming::http-client",
"filesystem",
"asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Pybounce/bucket_dl"
[lib]
name = "bucket_dl"
path = "src/lib.rs"
[[example]]
name = "indicatif_bars"
path = "examples/indicatif_bars.rs"
[dependencies.dirs]
version = "6.0.0"
[dependencies.futures-util]
version = "0.3.31"
[dependencies.reqwest]
version = "0.12.12"
features = ["stream"]
[dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.indicatif]
version = "0.17.11"
[dev-dependencies.tokio-test]
version = "0.4.4"