-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 840 Bytes
/
Cargo.toml
File metadata and controls
32 lines (26 loc) · 840 Bytes
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 = "furl-cli"
description = "A fast, multithreaded CLI downloader built in Rust."
version = "0.7.0"
edition = "2024"
readme = "README.md"
license = "Apache-2.0"
authors = ["Sudip Ghimire"]
homepage = "https://github.com/ghimiresdp/furl-cli"
repository = "https://github.com/ghimiresdp/furl-cli"
keywords = ["downloader", "cli", "multithreaded", "http"]
categories = ["command-line-utilities", "network-programming"]
exclude = ["target/", "Cargo.lock", ".github/"]
[lib]
name = "furl_core"
path = "src/lib.rs"
[[bin]]
name = "furl"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.53", features = ["derive"] }
futures-util = "0.3.31"
indicatif = "0.18.3"
regex = "1.12.2"
reqwest = { version = "0.12.26", features = ["json", "stream"] }
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros"] }