summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-04-15 17:43:00 +0000
committerTim Oram <dev@mitmaro.ca>2022-04-15 15:29:45 -0230
commit87eb89259ef399ea09b8f72583905335b6504d10 (patch)
tree3ae766eb31f4a9911261cc7849282000563d5854
parent9ab1d14b914936b679c5e497ac65b27b41bd7523 (diff)
Bump crossterm from 0.23.0 to 0.23.2
Bumps [crossterm](https://github.com/crossterm-rs/crossterm) from 0.23.0 to 0.23.2. - [Release notes](https://github.com/crossterm-rs/crossterm/releases) - [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md) - [Commits](https://github.com/crossterm-rs/crossterm/commits) --- updated-dependencies: - dependency-name: crossterm dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--Cargo.lock21
-rw-r--r--src/display/Cargo.toml2
-rw-r--r--src/input/Cargo.toml2
3 files changed, 16 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 447fcf2..44dd987 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -94,9 +94,9 @@ dependencies = [
[[package]]
name = "crossterm"
-version = "0.23.0"
+version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "77b75a27dc8d220f1f8521ea69cd55a34d720a200ebb3a624d9aa19193d3b432"
+checksum = "a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17"
dependencies = [
"bitflags",
"crossterm_winapi",
@@ -160,7 +160,7 @@ checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if",
"libc",
- "wasi",
+ "wasi 0.10.2+wasi-snapshot-preview1",
]
[[package]]
@@ -387,14 +387,15 @@ checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
[[package]]
name = "mio"
-version = "0.7.13"
+version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
+checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
dependencies = [
"libc",
"log",
"miow",
"ntapi",
+ "wasi 0.11.0+wasi-snapshot-preview1",
"winapi",
]
@@ -687,9 +688,9 @@ dependencies = [
[[package]]
name = "signal-hook-mio"
-version = "0.2.1"
+version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "29fd5867f1c4f2c5be079aee7a2adf1152ebb04a4bc4d341f504b7dece607ed4"
+checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
dependencies = [
"libc",
"mio",
@@ -837,6 +838,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
+name = "wasi"
+version = "0.11.0+wasi-snapshot-preview1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
+
+[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/src/display/Cargo.toml b/src/display/Cargo.toml
index 5537fa2..1fb7dc6 100644
--- a/src/display/Cargo.toml
+++ b/src/display/Cargo.toml
@@ -16,7 +16,7 @@ name = "display"
[dependencies]
anyhow = "1.0"
-crossterm = "0.23.0"
+crossterm = "0.23.2"
girt-config = {version = "1.0.0", path = "../config"}
[dev-dependencies]
diff --git a/src/input/Cargo.toml b/src/input/Cargo.toml
index 5ecba93..12f2b24 100644
--- a/src/input/Cargo.toml
+++ b/src/input/Cargo.toml
@@ -18,7 +18,7 @@ name = "input"
anyhow = "1.0"
bitflags = "1.3.2"
crossbeam-channel = "0.5.4"
-crossterm = "0.23.0"
+crossterm = "0.23.2"
girt-config = {version = "1.0.0", path = "../config"}
parking_lot = "0.12.0"