-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 972 Bytes
/
Cargo.toml
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
[package]
name = "soar-dl"
version = "0.3.1"
authors = ["Rabindra Dhakal <[email protected]>"]
description = "A fast download manager"
license = "MIT"
edition = "2021"
repository = "https://github.com/pkgforge/soar-dl"
keywords = ["download-manager", "binary", "github", "gitlab", "direct"]
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
[features]
binary = ["clap", "indicatif"]
[dependencies]
clap = { version = "4.5.21", features = ["cargo", "derive"], optional = true }
futures = "0.3.31"
indicatif = { version = "0.17.9", optional = true }
regex = { version = "1.11.1", default-features = false, features = ["std", "unicode-case", "unicode-perl"] }
reqwest = { version = "0.12.9", default-features = false, features = ["rustls-tls", "stream", "http2", "blocking", "json"] }
serde = { version = "1.0.215", features = ["derive"] }
tokio = { version = "1.41.1", features = ["macros", "rt-multi-thread"] }
url = "2.5.4"