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

mod bubble;
mod cow;
mod shapes;

pub use cow::Cow;
pub use shapes::CowShape;