//! # WordCloud
//!
//! Generate word clouds with Rust.
//!
//! <img src="../../../doc/img/front.png" height="600" width="800" />
//!
//! This work is distributed under the [MIT license](../../..//LICENSE).
//!
//! The fonts are distributed under the [Apache license](../../..//assets/fonts/LICENSE.txt).
mod cloud_builder;
pub mod collision;
pub mod colors;
pub mod geometry;
pub mod placement;
pub mod visualization;
pub mod words;
pub use cloud_builder::CloudBuilder;