1
0
Fork 0
mirror of https://github.com/nachoparker/dutree synced 2024-05-12 23:56:08 +02:00
This commit is contained in:
emixa-d 2022-05-25 21:32:16 +02:00 committed by GitHub
commit ba2f7feee9
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 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

@ -60,3 +60,11 @@ You can install `dutree` from the official Fedora repositories:
```sh
$ sudo dnf -y install dutree
```
## Guix
You can install `dutree` in Guix:
```sh
$ guix install dutree
```

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() {