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
- Host: GitHub
- URL: https://github.com/nyuichi/rscode-rs
- Owner: nyuichi
- Created: 2021-08-09T19:59:38.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-10T08:02:48.000Z (almost 4 years ago)
- Last Synced: 2025-01-30T13:24:12.274Z (4 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```