celly 0.6.0

Cellular automaton library.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(custom_derive, plugin)]
#![plugin(serde_macros)]

extern crate serde;
#[cfg(test)]
extern crate bincode;

pub mod grid;
pub mod engine;
pub mod traits;
mod utils;

mod examples;

#[cfg(test)]
mod test_helpers;