Compare commits

..

No commits in common. "2e0c12ee56bb4225c4aa7e083cf754953f1bfcd5" and "33d772c9e3b456fe2d83ef40d8e562c8c71f22d2" have entirely different histories.

2 changed files with 9 additions and 6 deletions

7
Cargo.lock generated
View File

@ -140,9 +140,8 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
[[package]]
name = "crossterm"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab9f7409c70a38a56216480fba371ee460207dd8926ccf5b4160591759559170"
version = "0.23.2"
source = "git+https://github.com/crossterm-rs/crossterm.git?rev=21155716e2eedd5ba8ab97168e5eed7cd50d2ad8#21155716e2eedd5ba8ab97168e5eed7cd50d2ad8"
dependencies = [
"bitflags",
"crossterm_winapi",
@ -183,7 +182,7 @@ dependencies = [
[[package]]
name = "ffdl"
version = "0.1.4"
version = "0.1.3"
dependencies = [
"anyhow",
"chrono",

View File

@ -1,6 +1,6 @@
[package]
name = "ffdl"
version = "0.1.4"
version = "0.1.3"
authors = ["daniel m <danielm@dnml.de>"]
edition = "2021"
description = "Download files fast"
@ -15,4 +15,8 @@ clap = { version = "3.1.12", features = [ "derive" ] }
chrono = "0.4.19"
thiserror = "1.0.30"
anyhow = "1.0.57"
crossterm = "0.24.0"
# 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" }