From fbbb59a1c1f0878faf8e3a2f85a5adbb027c85e7 Mon Sep 17 00:00:00 2001 From: Mossfet Date: Fri, 22 Sep 2023 14:47:11 +0100 Subject: [PATCH] Removed benchmarks --- src/lib.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index a1419bf..d6b930e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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()); } -} +}*/