- Fix visual bugs on windows using git-bash that are caused by crossterm - The crossterm bug was fixed in upstream by PR-657 but is not yet released to crates.io - Bump version to 0.1.3
23 lines
780 B
TOML
23 lines
780 B
TOML
[package]
|
|
name = "ffdl"
|
|
version = "0.1.3"
|
|
authors = ["daniel m <danielm@dnml.de>"]
|
|
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" }
|