1
0
Fork 0
mirror of https://github.com/nachoparker/dutree synced 2024-05-11 23:46:06 +02:00

Update signal-hook dependency

This commit is contained in:
Maxime Devos 2022-05-25 19:27:24 +00:00
parent 44e877d148
commit 27ee44fffc
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ edition = "2018"
[dependencies]
getopts = "0.2.21"
regex = "1.3.9"
signal-hook = "0.1.10"
signal-hook = "0.3.10"
terminal_size = "0.1.8"
unicode-width = "0.1.1"
unicode-segmentation = "1.2.0"

View File

@ -45,7 +45,7 @@ use std::process;
fn main() {
// handle SIGPIPE
let _signal = unsafe { signal_hook::register(signal_hook::SIGPIPE, || process::exit(0)) };
let _signal = unsafe { signal_hook::low_level::register(signal_hook::consts::signal::SIGPIPE, || process::exit(0)) };
// Parse arguments
let cfg = match Config::new() {