bardic 0.1.0

A performance-focused toolkit for procedural narrative generation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![deny(missing_docs)]

//! Bardic provides performant building blocks for creating large-scale
//! procedural narrative generators.

/// Provides a way to manage and reference unique IDs for
/// entities in the system.
pub mod id;

/// Provides functionality for procedural text generation.
pub mod text;