gitextract_i8c54wt_/ ├── .github/ │ └── workflows/ │ └── CICD.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Cargo.toml ├── LICENSE ├── README.md ├── build.rs ├── ci/ │ ├── before_deploy.ps1 │ ├── before_deploy.sh │ ├── how2publish.txt │ ├── install.sh │ └── script.sh ├── completions/ │ ├── _dust │ ├── _dust.ps1 │ ├── dust.bash │ ├── dust.elv │ └── dust.fish ├── config/ │ └── config.toml ├── install.sh ├── man-page/ │ └── dust.1 ├── src/ │ ├── cli.rs │ ├── config.rs │ ├── dir_walker.rs │ ├── display.rs │ ├── display_node.rs │ ├── filter.rs │ ├── filter_type.rs │ ├── main.rs │ ├── node.rs │ ├── platform.rs │ ├── progress.rs │ └── utils.rs └── tests/ ├── test_dir/ │ └── many/ │ ├── a_file │ └── hello_file ├── test_dir2/ │ ├── dir/ │ │ └── hello │ ├── dir_name_clash │ ├── dir_substring/ │ │ └── hello │ └── long_dir_name_what_a_very_long_dir_name_what_happens_when_this_goes_over_80_characters_i_wonder ├── test_dir_files_from/ │ ├── a_file │ ├── files0_from.txt │ ├── files_from.txt │ └── hello_file ├── test_dir_hidden_entries/ │ ├── .hidden_file │ └── .secret ├── test_dir_matching/ │ ├── andy/ │ │ └── dup_name/ │ │ └── hello │ └── dave/ │ └── dup_name/ │ └── hello ├── test_dir_unicode/ │ ├── ラウトは難しいです!.japan │ └── 👩.unicode ├── test_exact_output.rs ├── test_flags.rs ├── tests.rs └── tests_symlinks.rs