1
0
Fork 0
mirror of https://github.com/nachoparker/dutree synced 2024-04-25 03:45:03 +02:00

Use CARGO_PKG_VERSION

Signed-off-by: nachoparker <nacho@ownyourbits.com>
This commit is contained in:
nachoparker 2021-05-09 14:25:51 -06:00
parent 14ecb1cbfb
commit 44e877d148
3 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@ -17,7 +17,7 @@ checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
[[package]]
name = "dutree"
version = "0.2.16"
version = "0.2.18"
dependencies = [
"getopts",
"regex",

View File

@ -1,6 +1,6 @@
[package]
name = "dutree"
version = "0.2.17"
version = "0.2.18"
authors = ["nacho <nacho@ownyourbits.com>"]
description = "Command line tool to analyze disk usage"
repository = "https://github.com/nachoparker/dutree"
@ -8,10 +8,11 @@ categories = ["command-line-utilities"]
license = "GPL-3.0"
homepage = "https://ownyourbits.com/2018/03/25/analize-disk-usage-with-dutree/"
exclude = ["test/*"]
edition = "2018"
[dependencies]
getopts = "0.2.21"
regex = "1"
regex = "1.3.9"
signal-hook = "0.1.10"
terminal_size = "0.1.8"
unicode-width = "0.1.1"

View File

@ -61,7 +61,7 @@ use std::os::unix::fs::MetadataExt;
use std::env;
use std::collections::HashMap;
const VERSTR : &str = "v0.2.17";
const VERSTR : &str = env!("CARGO_PKG_VERSION");
const DEF_WIDTH : u16 = 80;
pub enum XResult<T,S> {