word_cloud/
lib.rs

1//! # WordCloud
2//!
3//! Generate word clouds with Rust.
4//!
5//! <img src="../../../doc/img/front.png" height="600" width="800" />
6//!
7//! This work is distributed under the [MIT license](../../..//LICENSE).
8//!
9//! The fonts are distributed under the [Apache license](../../..//assets/fonts/LICENSE.txt).
10
11mod cloud_builder;
12
13pub mod collision;
14pub mod colors;
15pub mod geometry;
16pub mod placement;
17pub mod visualization;
18pub mod words;
19
20pub use cloud_builder::CloudBuilder;