summaryrefslogtreecommitdiffstats
path: root/grep
AgeCommit message (Collapse)Author
2016-09-17grep 0.1.1Andrew Gallant
2016-09-16Improve the "bad literal" error message.Andrew Gallant
Incidentally, this was done by using the Debug impl for `char` instead of the Display impl. Cute. Fixes #5.
2016-09-13add readmeAndrew Gallant
2016-09-13update grep Cargo.tomlAndrew Gallant
2016-09-11Update regex.Andrew Gallant
2016-09-10Fix off-by-one bug in searcher.Andrew Gallant
2016-09-08Rename xrep to ripgrep.Andrew Gallant
2016-09-06Fix grep match iterator.Andrew Gallant
2016-09-06Fix required literal handling and add debug prints.Andrew Gallant
In particular, if we had an inner literal and were doing a case insensitive search, then the literals are dropped because we previously only allowed a single inner literal to have an effect. Now we allow alternations of inner literals, but still don't quite take full advantage.
2016-09-05Fix deps so that others can build it.Andrew Gallant
2016-09-03making search work (finally)Andrew Gallant
2016-08-29The search code is a mess, but...Andrew Gallant
... we now support inverted matches and line numbers!
2016-08-28Implementing core functionality.Andrew Gallant
Initially experimenting with crossbeam to manage synchronization.
2016-08-24docs and small polishAndrew Gallant
2016-08-24Remove the buffered reader.Andrew Gallant
We really need functionality like this when memory maps aren't suitable, either because they're too slow or because they just aren't available (like for reading stdin). However, this particular approach was completely bunk. Namely, the interface was all wrong. The caller needs to maintain some kind of control over the search buffers for special output features (like contexts or inverted matching), but this interface as written doesn't support that kind of pattern at all. So... back to the drawing board.
2016-08-08Refactor buffered test.Andrew Gallant
2016-08-05updateAndrew Gallant
2016-06-22progressAndrew Gallant
2016-06-20refactor progressAndrew Gallant