ffdl/Cargo.toml
Daniel M 240a3ace42 Update crates + rewrite arg parsing + refactor
- Updated all crates to the latest versions
- Rewrote arg parsing using clap derive
- Started refactoring arg parsing & code in main
2022-03-28 01:16:58 +02:00

17 lines
420 B
TOML

[package]
name = "ffdl"
version = "0.1.2"
authors = ["daniel m <danielm@dnml.de>"]
edition = "2018"
description = "Download files fast"
[dependencies]
tokio = { version = "1.17.0", features = [ "full" ] }
reqwest = { version = "0.11.10", features = [ "stream" ] }
futures = "0.3.21"
percent-encoding = "2.1.0"
regex = "1.5.5"
crossterm = "0.23.1"
clap = { version = "3.1.6", features = [ "derive" ] }
chrono = "0.4.19"