Most of basic functionality implemented

This commit is contained in:
Andrew Phillips
2023-08-31 19:38:59 +00:00
parent b9bf5a831e
commit 49a77f9090
5 changed files with 1382 additions and 142 deletions

View File

@@ -6,10 +6,24 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.10", features = ["derive", "env"] }
directories = "5.0.1"
lazy_static = "1.4.0"
libc = "0.2.147"
log = "0.4.19"
regex = "1.9.1"
rusqlite = { version = "0.29.0", features = ["bundled"] }
rusqlite = { version = "0.29.0", features = ["bundled", "array", "chrono"] }
rusqlite_migration = "1.0.2"
stderrlog = "0.5.4"
strum_macros = "0.25"
strum = { version = "0.25", features = ["derive"] }
signal-hook = "0.3.17"
prettytable-rs = "0.10.0"
chrono = "0.4.26"
gethostname = "0.4.3"
humansize = "2.1.3"
enum-map = "2.6.1"
is-terminal = "0.4.9"
term = "0.7.0"