Compare commits

..

No commits in common. "main" and "0.7.0" have entirely different histories.
main ... 0.7.0

2 changed files with 5 additions and 4 deletions

View File

@ -6,7 +6,7 @@ license = "GPL-3.0-or-later"
name = "mossfets-game-of-life"
readme = "README.md"
repository = "https://git.solarpunk.moe/game-of-life"
version = "0.8.0"
version = "0.7.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -1,12 +1,13 @@
//! A library implemting the logic for Conway's Game of Life
//! It can be embedded into applications, and can read the Plaintext and Life 1.05 file formats.
//extern crate test;
#![feature(test)]
extern crate test;
pub mod game;
pub mod reader;
pub mod writer;
/*#[cfg(test)]
#[cfg(test)]
mod tests {
use super::*;
use test::Bencher;
@ -15,4 +16,4 @@ mod tests {
let mut game = reader::read_game_at_path("tests/cells/spacefiller.cells").unwrap();
b.iter(|| game.advance_board());
}
}*/
}