1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![warn(clippy::all, clippy::pedantic, clippy::nursery)]

//! A cellular automaton simulation library with `WebAssembly` as a target.

mod automaton;

pub use automaton::{ruleset::*, Automaton};

#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;