summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2020-12-30 14:02:10 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2020-12-30 14:02:10 -0500
commite4faa16c8a7f2a51303ad3fe9f3891d8f7eabb82 (patch)
tree3d1be976d3a23d2aad667b1106668263cfd5ce6d /Cargo.lock
parent72f5e1eaf4c0fcbe39bd3f0d80cf9ab45d504057 (diff)
add resize notification support and preliminary mouse support
- currently scroll is hardmapped to cursor_up and cursor_down
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 90d7f54..102391a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -192,6 +192,7 @@ dependencies = [
"serde",
"serde_derive",
"shell-words",
+ "signal-hook",
"structopt",
"termion",
"toml",
@@ -505,6 +506,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074"
[[package]]
+name = "signal-hook"
+version = "0.3.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6b3799fa361789a685db59e3986fb5f6f949e478728b9913c6759f7b014d0372"
+dependencies = [
+ "libc",
+ "signal-hook-registry",
+]
+
+[[package]]
+name = "signal-hook-registry"
+version = "1.3.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "16f1d0fef1604ba8f7a073c7e701f213e056707210e9020af4528e0101ce11a6"
+dependencies = [
+ "libc",
+]
+
+[[package]]
name = "siphasher"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"