summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2020-07-11Replace flume with just std::sync::mpscSebastian Thiel
2020-07-10update dependenciesSebastian Thiel
2020-07-10update dependenciesSebastian Thiel
2020-07-10patch bump tui-reacttui-react-v0.4.1Sebastian Thiel
2020-07-07update dependenciesSebastian Thiel
2020-07-07Bump patch levelv2.9.1Sebastian Thiel
2020-07-07Fix color handling (causing the text to disappear); fix tty detectionSebastian Thiel
Crossterm works differently from termion, I might say: more correct!
2020-07-06Cut new release: 2.9v2.9.0Sebastian Thiel
2020-07-06Make interactive mode optional, allow selection of backend for windows, unixSebastian Thiel
2020-07-06Completely rid ourselves of Termion to make backend selection possibleSebastian Thiel
2020-07-06Replace termion::color with coloredSebastian Thiel
2020-07-06termcolor spends 1200 lines on handlings buffers, and it's not liking plain ↵Sebastian Thiel
io::Write Which means it doesn't like what's currently there. So let's go back to what can actually work: colored.
2020-07-06for a moment I thought 'colored' could be used, but…Sebastian Thiel
…it's really allocation heavy. Something simpler might be it, what about termcolor?
2020-07-06Use crosstermion to create a terminal with the corresponding backendSebastian Thiel
The only question left is how to conform colors.
2020-07-06convert input handling to crosstermionSebastian Thiel
2020-07-02bump patch levelv2.8.2Sebastian Thiel
2020-07-02Bring structopt back, argh doesn't support OsStringsSebastian Thiel
https://www.reddit.com/r/rust/comments/hjn64e/dua_28_disk_usage_analyzer_is_now_430kb_smaller/fwnjjp9?utm_source=share&utm_medium=web2x
2020-07-02Bump patch levelv2.8.1Sebastian Thiel
2020-07-02Use 'anyhow' instead of 'failure' to simplify code and reduce bloatSebastian Thiel
2020-07-02bump minor versionv2.8.0Sebastian Thiel
2020-07-02All tests work with argh (which really needs aliases)Sebastian Thiel
2020-07-02First version of options struct based on ArghSebastian Thiel
2020-07-02upgrade byte-unit to version 4v2.7.0Sebastian Thiel
2020-07-02update dependenciesSebastian Thiel
2020-07-02Cut a new minor release: 2.7Sebastian Thiel
2020-05-31bump patch levelv2.6.1Sebastian Thiel
2020-05-31Abort on panic for smaller binaries; update dependenciesSebastian Thiel
2020-05-04Upgrade to tui 0.9v2.6.0tui-react-v0.4.0Sebastian Thiel
2020-05-04Update dependenciesSebastian Thiel
2020-04-05bump minorv2.5.0Sebastian Thiel
2020-04-03Bump tui-react version to 0.3tui-react-v0.3.0Sebastian Thiel
2020-03-30bump patchv2.4.1Sebastian Thiel
2020-03-30Revert attempt to use tui-react's drawing…Sebastian Thiel
…as it is consistently slower. Don't know what to do there. Fair enough.
2020-03-30use tui-react to draw text…Sebastian Thiel
…for a chance to get it to be faster. Right now, it isn't though, graphemes are killing it.
2020-03-29Bump minor versionv2.4.0Sebastian Thiel
Fixes #47
2020-03-29Don't try to shutdown keyinput thread to not lose input eventsSebastian Thiel
2020-03-29Crossbeam channel is actually not needed in this caseSebastian Thiel
2020-03-29Import plenty of utilities from prodash into tui-reacttui-react-v0.2.2Sebastian Thiel
2020-03-29Now there could possibly be abortable and navigatable GUI while scanning…Sebastian Thiel
…even though it will be wonky at first
2020-03-29Also exit quickly when ctrl+c is pressedSebastian Thiel
2020-03-29Revert "Asynchronous processing of keyboard events…"Sebastian Thiel
This reverts commit 7f32fb9a Won't be required after all.
2020-03-29Asynchronous processing of keyboard events…Sebastian Thiel
…to pave the way for async handling of initial traversal and events, that is, processing both at the same time.
2020-03-27Truly don't follow symlinks unless they are the only top-level path.v2.3.9Sebastian Thiel
This is a brute-force hack which won't show them at all, there certainly is better ways if we would know if we expanded paths ourselves or not.
2020-03-26bump patch levelSebastian Thiel
2020-03-24updaet dependencies; bump versionv2.3.7Sebastian Thiel
2020-03-24Update to filesize v0.2Thomas Hurst
2020-03-16bump patch levelv2.3.6Sebastian Thiel
2020-03-16jwalk 0.5 has landed - now we don't follow symlinks during traversal!Sebastian Thiel
2020-03-15Bump patch levelv2.3.5Sebastian Thiel
2020-03-15Revert "Upgrade to jwalk 0.5; stop following symlinks during traversal"Sebastian Thiel
This reverts commit 4990fa4202f2b687ee2476efe0a406fdfe23fd96. Performance regression - it only uses a single thread for most of the iteration.