You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-rust-examples/fern_sim/src/lib.rs

16 lines
308 B
Rust

//! Simulate the growth of ferns, from the level of
//! individual cells on up.
#![warn(rust_2018_idioms)]
#![allow(elided_lifetimes_in_paths)]
pub mod plant_structures;
pub mod simulation;
pub mod spores;
pub use plant_structures::Fern;
pub use simulation::Terrarium;
pub mod net;
pub use net::connect;