Compare commits

..

2 Commits

Author SHA1 Message Date
2e0c12ee56 Bump version to 0.1.4 2022-07-17 23:34:19 +02:00
7606f90384 Update crossterm dependency
- Crossterm 0.24 was released with the merged bugfix, so no need for
  the pinned git dependency anymore
2022-07-17 23:33:21 +02:00
2 changed files with 6 additions and 9 deletions

7
Cargo.lock generated
View File

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

View File

@ -1,6 +1,6 @@
[package]
name = "ffdl"
version = "0.1.3"
version = "0.1.4"
authors = ["daniel m <danielm@dnml.de>"]
edition = "2021"
description = "Download files fast"
@ -15,8 +15,4 @@ 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" }
crossterm = "0.24.0"