summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-03-14 17:52:52 -0400
committerGitHub <noreply@github.com>2023-03-14 17:52:52 -0400
commit8fe3f1f23c26ca8cb16afd9474728b9e80e2bd64 (patch)
tree32e84b88793b32332e8d1008384137dc9d220efb
parent6be6409b72eae36c9e223637b566aaf4cc38ec60 (diff)
deps: revert crossterm 0.26.1 to fix double input bug on Windows (#1066)
-rw-r--r--Cargo.lock20
-rw-r--r--Cargo.toml2
2 files changed, 3 insertions, 19 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cad398fc..d45b6f14 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -216,7 +216,7 @@ dependencies = [
"clap_mangen",
"concat-string",
"const_format",
- "crossterm 0.26.1",
+ "crossterm",
"ctrlc",
"dirs",
"fern",
@@ -474,22 +474,6 @@ dependencies = [
]
[[package]]
-name = "crossterm"
-version = "0.26.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
-dependencies = [
- "bitflags",
- "crossterm_winapi",
- "libc",
- "mio",
- "parking_lot",
- "signal-hook",
- "signal-hook-mio",
- "winapi",
-]
-
-[[package]]
name = "crossterm_winapi"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1729,7 +1713,7 @@ checksum = "ccdd26cbd674007e649a272da4475fb666d3aa0ad0531da7136db6fab0e5bad1"
dependencies = [
"bitflags",
"cassowary",
- "crossterm 0.25.0",
+ "crossterm",
"unicode-segmentation",
"unicode-width",
]
diff --git a/Cargo.toml b/Cargo.toml
index 0b9c7bf1..c7e65bee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -78,7 +78,7 @@ cfg-if = "1.0.0"
clap = { version = "3.2.2", features = ["default", "cargo", "wrap_help"] }
concat-string = "1.0.1"
const_format = "0.2.30"
-crossterm = "0.26.1"
+crossterm = "0.25.0"
ctrlc = { version = "3.2.5", features = ["termination"] }
dirs = "4.0.0"
fern = { version = "0.6.1", optional = true }