Skip to content

Commit

Permalink
mission statement and first tasks, to get started
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Thiel committed May 29, 2019
1 parent e9a4472 commit 247a3b9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
9 changes: 6 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dua"
version = "1.0.0"
name = "dua-cli"
version = "0.1.0"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
publish = false
edition = "2018"
Expand All @@ -14,7 +14,10 @@ structopt = "0.2.14"
name="dua"
path="src/main.rs"

[lib]
name="dua"

[profile.release]
panic = 'unwind'
incremental = false
overflow-checks = true
overflow-checks = false
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Getting Started

Find-and-replace the term `dua` with the name of your command-line application.
DUA (-> Disk Usage Analyzer) is a tool to conveniently learn about the usage of memory of a given directory. It's parallel by default and will max out your SSD, providing relevant information as fast as possible.

### Tasks

* [ ] Simple CLI to list top-level directories similar to sn-sort
* [ ] A multi-threaded directory walker capable of being used for all kinds of directory-based computations.
Ideally, each listing of a directory can be handled by a separate thread.

0 comments on commit 247a3b9

Please sign in to comment.