[package]
edition = "2024"
name = "ripget"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast multi-part downloader with retries, progress, and configurable parallelism."
homepage = "https://github.com/sam0x17/ripget"
documentation = "https://docs.rs/ripget"
readme = "README.md"
keywords = [
"download",
"downloader",
"http",
"async",
"cli",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sam0x17/ripget"
[lib]
name = "ripget"
path = "src/lib.rs"
[[bin]]
name = "ripget"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.env_logger]
version = "0"
[dependencies.futures-util]
version = "0"
[dependencies.indicatif]
version = "0"
[dependencies.log]
version = "0"
[dependencies.reqwest]
version = "0"
features = [
"rustls-tls",
"stream",
]
default-features = false
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"fs",
"io-util",
"macros",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0"
features = ["io"]
[dev-dependencies.hyper]
version = "0"
features = ["full"]
[dev-dependencies.tempfile]
version = "3"