1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
// TODO: tests!
#![no_std]

// Exports :)
pub use crate::peapod_vec::Peapod;
pub use phenotype_internal::{Phenotype, PhenotypeDebug};
pub use phenotype_macro::{Phenotype, PhenotypeDebug};

mod peapod_vec;

// in the works
mod array;