mirror of
https://gitee.com/openharmony/third_party_rust_nom
synced 2024-11-27 09:40:54 +00:00
Merge pull request #86 from nox/do-you-even-hyphen
Properly hyphenate nom's qualifiers
This commit is contained in:
commit
5f7beb145a
@ -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"
|
||||
|
@ -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**:
|
||||
|
Loading…
Reference in New Issue
Block a user