https://github.com/jwodder/life
Conway's Game of Life in Rust
https://github.com/jwodder/life
conway game-of-life rust
Last synced: 2 months ago
JSON representation
Conway's Game of Life in Rust
- Host: GitHub
- URL: https://github.com/jwodder/life
- Owner: jwodder
- License: mit
- Created: 2023-12-24T16:32:03.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-28T12:33:59.000Z (6 months ago)
- Last Synced: 2025-03-28T13:29:04.902Z (6 months ago)
- Topics: conway, game-of-life, rust
- Language: Rust
- Homepage:
- Size: 237 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 38
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.repostatus.org/#concept)
[](https://github.com/jwodder/life/actions/workflows/test.yml)
[](https://codecov.io/gh/jwodder/life)
[](https://www.rust-lang.org)
[](https://opensource.org/licenses/MIT)This is a Rust [workspace][] containing various packages for doing things with
[Conway's Game of Life][].The packages are:
- [`lifelib`][] — Core library implementing the Game of Life and related
functionality- [`tick`][] — Program for advancing Game of Life patterns
- [`life-utils`][] — Internal utilities used by multiple packages
This workspace as a whole is a hobby project for personal experimentation &
edification and is not intended to be generally/widely used by others. Use
anything here at your own risk.[workspace]: https://doc.rust-lang.org/cargo/reference/workspaces.html
[Conway's Game of Life]: https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life
[`lifelib`]: https://github.com/jwodder/life/tree/master/crates/lifelib
[`tick`]: https://github.com/jwodder/life/tree/master/crates/tick
[`life-utils`]: https://github.com/jwodder/life/tree/master/crates/life-utils