ruby_string/lib.rs
1//! This crate provides a string type that can have
2//! [ruby glosses](https://en.wikipedia.org/wiki/Ruby_character)
3//! attached to parts of it. (If you're not familiar with the concept of Ruby characters, follow
4//! that link right there first.)
5//!
6//! ## Maturity
7//!
8//! This crate is a "Minimum Viable Product" right now, so the API is quite bare. Feel free to
9//! create a GitHub issue if you're missing an API for your usecase. Better yet, send a PR to add
10//! your desired API. (For bigger changes, please create an issue beforehand to discuss the
11//! API design.)
12
13mod iterator;
14pub use iterator::*;
15mod string;
16pub use string::*;