diff options
author | Ivan Tham | 2021-07-17 14:47:08 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-03 00:32:21 +0000 |
commit | 821565e4efe84f97e08327138cbe8f09aba934e0 (patch) | |
tree | eaf80ea3d12906db4805dfe27e30a51250014243 /Cargo.lock | |
parent | adb5d842ba3ff7e539a77de54a0a8db3018a3844 (diff) |
Add ctrl-z to suspend
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -378,6 +378,8 @@ dependencies = [ "pulldown-cmark", "serde", "serde_json", + "signal-hook", + "signal-hook-tokio", "tokio", "toml", ] @@ -866,6 +868,18 @@ dependencies = [ ] [[package]] +name = "signal-hook-tokio" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6c5d32165ff8b94e68e7b3bdecb1b082e958c22434b363482cfb89dcd6f3ff8" +dependencies = [ + "futures-core", + "libc", + "signal-hook", + "tokio", +] + +[[package]] name = "similar" version = "1.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" |