Update crossterm dependency

- Crossterm 0.24 was released with the merged bugfix, so no need for
  the pinned git dependency anymore
This commit is contained in:
Daniel M 2022-07-17 23:33:21 +02:00
parent 33d772c9e3
commit 7606f90384
2 changed files with 4 additions and 7 deletions

5
Cargo.lock generated
View File

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

View File

@ -15,8 +15,4 @@ clap = { version = "3.1.12", features = [ "derive" ] }
chrono = "0.4.19" chrono = "0.4.19"
thiserror = "1.0.30" thiserror = "1.0.30"
anyhow = "1.0.57" 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" }