[package] name = "ffdl" version = "0.1.3" authors = ["daniel m "] edition = "2021" 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" clap = { version = "3.1.12", features = [ "derive" ] } chrono = "0.4.19" thiserror = "1.0.30" anyhow = "1.0.57" # crossterm had a bug that caused issues on windows with git-bash. This was fixed in a pr, but the # new version is not yet published to crates.io, so a git dependency with commit pinning is used # crossterm = "0.23.2" crossterm = { git = "https://github.com/crossterm-rs/crossterm.git", rev = "21155716e2eedd5ba8ab97168e5eed7cd50d2ad8" }