ffdl/Cargo.toml
Daniel M 4fb19a4f5b Use latest git version for crossterm to fix bug
- 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
2022-06-15 17:51:07 +02:00

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" }