diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 5 | ||||
-rw-r--r-- | src/lib.rs | 2 |
3 files changed, 5 insertions, 4 deletions
@@ -17,7 +17,7 @@ checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034" [[package]] name = "dutree" -version = "0.2.16" +version = "0.2.18" dependencies = [ "getopts", "regex", @@ -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" @@ -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> { |