Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuvadm/bchlib
Rust bindings for BCH encoding/decoding library, based on the bch_codec fork
https://github.com/yuvadm/bchlib
bch coding-theory encoding rust
Last synced: 28 days ago
JSON representation
Rust bindings for BCH encoding/decoding library, based on the bch_codec fork
- Host: GitHub
- URL: https://github.com/yuvadm/bchlib
- Owner: yuvadm
- License: gpl-2.0
- Created: 2019-03-18T12:31:13.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-27T13:40:43.000Z (over 5 years ago)
- Last Synced: 2024-11-08T06:19:31.609Z (about 2 months ago)
- Topics: bch, coding-theory, encoding, rust
- Language: C
- Homepage:
- Size: 53.7 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# bchlib
[![Crates.io](https://img.shields.io/crates/v/bchlib.svg)](https://crates.io/crates/bchlib)
Rust bindings for BCH encoding/decoding library, based on the [bch_codec](https://github.com/mborgerding/bch_codec) fork.
This workspace repo contains both the high-level `bchlib` project as well as the lower-level `bchlib-sys` project that builds the original C library.
## Usage
Add the library to your `Cargo.toml`:
```
[dependencies]
bchlib = "0.2.1"
```## Build
The usual:
```bash
$ cargo build
$ cargo test
```Note that due to usage of `bindgen` in the lower level `bchlib-sys` project, you will need `clang` to be installed on your system.
## License
[GPLv2](LICENSE.md)