mentat/query-parser
Thom 9740cafdbd Automatically remove trailing whitespace from text files. (#527) r=rnewman
This was done using the following shell script:

```
find . -type f -not -path "*target*" \
       '(' -name '*.rs' -o -name '*.md' -o -name '*.toml' ')' -print0 | \
    xargs -0 sed -i '' -E 's/[[:space:]]*$//'
```

Which is admittedly imperfect, but manages to hit everything that was a problem in this repo.
2018-01-19 21:21:04 -06:00
..
src Automatically remove trailing whitespace from text files. (#527) r=rnewman 2018-01-19 21:21:04 -06:00
tests Pre: make rule_vars return unique vars. 2017-06-09 20:16:39 -07:00
Cargo.toml Update some dependencies. (#492) r=etoop 2017-11-21 16:24:08 +00:00
README.md Implement parsing of simple :find expressions. (#196) r=nalexander 2017-01-25 14:06:19 -08:00

See https://github.com/mozilla/mentat/wiki/Querying for a description of what's going on in this crate, as well as query and query-executor.