Uses old Rust 2015
0.1.1
|
May 15, 2016
|
0.1.0
|
May 14, 2016
|
#21 in #getopt
66 downloads per month
Used in whaledrive
rust-du
This is just an implementation of du -sb
in Rust so that I can play around
with learning Rust.
Some things that doing this project allowed me touch on in Rust:
-
Error Handling
- with the
try!
macro calls in lib.rs
- with pattern matching inside the main function
- and some
unwrap
s, sprinkled around the place
-
Argument Parsing
-
Generic Code
-
Testing
-
Packaging