Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
J-F-Liu committed Feb 15, 2017
1 parent d573611 commit a9f4356
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

[![Crates.io](https://img.shields.io/crates/v/pom.svg)](https://crates.io/crates/pom)
[![Build Status](https://travis-ci.org/J-F-Liu/pom.png)](https://travis-ci.org/J-F-Liu/pom)
[![Discord](https://img.shields.io/badge/discord-pom-red.svg)](https://discord.gg/CVy85pg)

PEG parser combinators created using operator overloading without macros.

Expand Down Expand Up @@ -44,7 +45,6 @@ Aside from build issues (and the usual issues around error messages and debuggab
|list(p,s) |Match list of *p*, separated by *s*.|
|one_of(set) |Success when current input symbol is one of the set.|
|none_of(set)|Success when current input symbol is none of the set.|
|range(r) |Success when the range contains current input symbol.|
|is_a(predicate) |Success when predicate return true on current input symbol.|
|not_a(predicate)|Success when predicate return false on current input symbol.|
|take(n)|Read *n* symbols.|
Expand Down Expand Up @@ -186,3 +186,7 @@ cargo run --example json
| pom: json_byte | 761,259 ns/iter (+/- 26,461) |
| pom: json_char | 676,080 ns/iter (+/- 36,376) |
| [pest](https://github.com/dragostis/pest): json_char | 13,359 ns/iter (+/- 811) |

## Releases

If you need to stick with Rust stable, use pom 1.0.0, otherwise you can try pom 2.0.0-alpha.
1 change: 0 additions & 1 deletion doc/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ This is the primary reason why I started to develop pom.
| list(p,s) | Match list of *p*, separated by *s*. |
| one_of(set) | Success when current input symbol is one of the set. |
| none_of(set) | Success when current input symbol is none of the set. |
| range(r) | Success when the range contains current input symbol. |
| is_a(predicate) | Success when predicate return true on current input symbol. |
| not_a(predicate) | Success when predicate return false on current input symbol. |
| take(n) | Read *n* symbols. |
Expand Down

0 comments on commit a9f4356

Please sign in to comment.