Merge pull request #86 from nox/do-you-even-hyphen

Properly hyphenate nom's qualifiers
This commit is contained in:
Geoffroy Couprie 2015-09-08 18:19:10 +02:00
commit 5f7beb145a
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
name = "nom"
version = "0.4.0"
authors = [ "contact@geoffroycouprie.com" ]
description = "A byte oriented, zero copy, parser combinators library"
description = "A byte-oriented, zero-copy, parser combinators library"
license = "MIT"
repository = "https://github.com/Geal/nom"
readme = "README.md"

View File

@ -12,9 +12,9 @@ This work is currently experimental, the API and syntax may still change a lot,
## Features
Here are the current and planned features, with their status:
- [x] **byte oriented**: the basic type is `&[u8]` and parsers will work as much as possible on byte array slices (but are not limited to them)
- [x] **bit oriented**: nom can address a byte slice as a bit stream
- [x] **zero copy**:
- [x] **byte-oriented**: the basic type is `&[u8]` and parsers will work as much as possible on byte array slices (but are not limited to them)
- [x] **bit-oriented**: nom can address a byte slice as a bit stream
- [x] **zero-copy**:
- [x] **in the parsers**: a parsing chain will almost always return a slice of its input data
- [x] **in the producers and consumers**: some copying still happens
- [x] **streaming**: