fastr/lib.rs
1//! Fast copy-on-write strings with small inline string optimization.
2//!
3//! This crate is a work-in-progress and will be available very soon.
4//!
5//! ## License
6//!
7//! This project is released under either
8//! [MIT License](https://github.com/nvzqz/fastr/blob/main/LICENSE-MIT) or
9//! [Apache License (Version 2.0)](https://github.com/nvzqz/fastr/blob/main/LICENSE-APACHE)
10//! at your choosing.
11
12#![no_std]