[package]
edition = "2024"
name = "furl-cli"
version = "0.7.0"
authors = ["Sudip Ghimire"]
build = false
exclude = [
"target/",
"Cargo.lock",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, multithreaded CLI downloader built in Rust."
homepage = "https://github.com/ghimiresdp/furl-cli"
readme = "README.md"
keywords = [
"downloader",
"cli",
"multithreaded",
"http",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/ghimiresdp/furl-cli"
[lib]
name = "furl_core"
path = "src/lib.rs"
[[bin]]
name = "furl"
path = "src/main.rs"
[dependencies.clap]
version = "4.5.53"
features = ["derive"]
[dependencies.futures-util]
version = "0.3.31"
[dependencies.indicatif]
version = "0.18.3"
[dependencies.regex]
version = "1.12.2"
[dependencies.reqwest]
version = "0.12.26"
features = [
"json",
"stream",
]
[dependencies.tokio]
version = "1.48.0"
features = [
"rt-multi-thread",
"macros",
]