An open API service indexing awesome lists of open source software.

https://github.com/nyuichi/rscode-rs

modernization of https://github.com/nyuichi/gauche-rscode
https://github.com/nyuichi/rscode-rs

Last synced: about 2 months ago
JSON representation

modernization of https://github.com/nyuichi/gauche-rscode

Awesome Lists containing this project

README

        

Rust implementation of Reed-Solomon encoding and decoding (Euclidean algorithm for decoding).

Try:

```console
$ echo "hello, world!" | cargo run -- --encode 12 | sed 's/hello, world/bye for now!/' | cargo run -- --decode 12
```