| Crates.io | rletxtconv |
| lib.rs | rletxtconv |
| version | 1.2.2 |
| created_at | 2025-04-28 14:56:34.965979+00 |
| updated_at | 2025-04-29 13:38:26.822013+00 |
| description | Conway's Game of Life file format converter |
| homepage | https://github.com/LuMarans30/rletxtconv |
| repository | |
| max_upload_size | |
| id | 1652262 |
| size | 80,359 |
A blazingly-fast Rust-based tool to convert between plaintext (.cells) and Run-Length Encoded (RLE) formats for Conway's Game of Life patterns.
.cells (plaintext) and .rle formats.Clone the repository:
git clone https://github.com/LuMarans30/rletxtconv.git && cd rletxtconv
Build the project:
cargo build --release
The binary will be located at target/release/rletxtconv.
Alternatively, you can find the binaries in the releases page.
Convert a file to the RLE format:
rletxtconv --input input.cells --output output.rle
Force overwrite if the output file exists:
rletxtconv --input input.rle --output output.cells --force