Skip to content

Commit

Permalink
Rewrite the program (#1)
Browse files Browse the repository at this point in the history
* Rewrite the program

* minor fix
  • Loading branch information
oissevalt authored Nov 14, 2023
1 parent 2e60b74 commit 4e52643
Show file tree
Hide file tree
Showing 9 changed files with 695 additions and 171 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/target
/.idea
.DS_Store
/.vscode
.DS_Store

/src_legacy
/test
222 changes: 146 additions & 76 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@ panic = "abort"
[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
sysinfo = "0.29.10"

# From 0.10.0, `zip` changes its APIs fundamentally.
zip = "0.6.6"
zip = "0.6.6" # From 0.10.0, `zip` changes its APIs fundamentally.
tar = "0.4.40"
flate2 = "1.0.27"

# Terminal interaction
term_size = "1.0.0-beta1"
colored = "2.0.4"

term_size = "0.3.2"
once_cell = "1.18.0"
chrono = "0.4.31"

# Logging
log = "0.4.20"
fern = "0.6.2"

[build-dependencies]
# For static links on Windows
Expand Down
Loading

0 comments on commit 4e52643

Please sign in to comment.