Compare commits

...

2 Commits
0.7.0 ... main

Author SHA1 Message Date
Mossfet ed61deb94a Bumped version 2023-09-22 14:50:51 +01:00
Mossfet fbbb59a1c1 Removed benchmarks 2023-09-22 14:47:11 +01:00
2 changed files with 4 additions and 5 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.7.0"
version = "0.8.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -1,13 +1,12 @@
//! 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.
#![feature(test)]
extern crate test;
//extern crate test;
pub mod game;
pub mod reader;
pub mod writer;
#[cfg(test)]
/*#[cfg(test)]
mod tests {
use super::*;
use test::Bencher;
@ -16,4 +15,4 @@ mod tests {
let mut game = reader::read_game_at_path("tests/cells/spacefiller.cells").unwrap();
b.iter(|| game.advance_board());
}
}
}*/