Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nrc/zero
A Rust library for zero-allocation parsing of binary data.
https://github.com/nrc/zero
Last synced: 6 days ago
JSON representation
A Rust library for zero-allocation parsing of binary data.
- Host: GitHub
- URL: https://github.com/nrc/zero
- Owner: nrc
- License: other
- Created: 2016-01-16T22:28:56.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-06T22:19:14.000Z (almost 2 years ago)
- Last Synced: 2024-12-31T04:09:00.278Z (13 days ago)
- Language: Rust
- Size: 11.7 KB
- Stars: 47
- Watchers: 3
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-rust-cn - nrc/zero - allocation parsing of binary data [<img src="https://api.travis-ci.org/nrc/zero.svg?branch=master">](https://travis-ci.org/nrc/zero) (Libraries / Parsing)
- awesome-rust - nrc/zero - allocation parsing of binary data [<img src="https://api.travis-ci.org/nrc/zero.svg?branch=master">](https://travis-ci.org/nrc/zero) (Libraries / Parsing)
- awesome-rust - nrc/zero - allocation parsing of binary data (Libraries / Parsing)
- awesome-rust-cn - nrc/zero
- awesome-rust-zh - nrc/zero - 二进制数据的零分配解析[<img src="https://api.travis-ci.org/nrc/zero.svg?branch=master">](https://travis-ci.org/nrc/zero) (库 / 解析)
README
# Zero
A Rust library for zero-allocation parsing of binary data.
Requires Rust version 1.6 or later (requires stable libcore for no_std).
See [docs](https://docs.rs/zero/) for more information.
Available on [crates.io](https://crates.io/crates/zero/).
Build:
```
cargo build
```Test:
```
cargo test
```To use in your project, add to your `Cargo.toml`:
```
[dependencies]
zero = "0.1.2"
```