You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support regular expressions and optional colouring
Improve command line options to include a flag to support regular expression patterns and another to indicate when the output should be coloured. Create a `Pattern` trait in order to support both `String` and `Regex` types to be patterns. Include pattern field in builder pattern when being set.
Stream files into threads to limit memory use
Rather than adding the whole file to a memory buffer while waiting for workers to become available, now only loads as many chunks as there are workers waiting to consume them.