zcheapstr/lib.rs
1#![no_std]
2#![deny(rust_2018_idioms)]
3#![doc(
4 html_logo_url = "https://raw.githubusercontent.com/z-galaxy/zbus/9f7a90d2b594ddc48b7a5f39fda5e00cd56a7dfb/logo.png"
5)]
6#![doc = include_str!("../README.md")]
7#![doc(test(attr(warn(unused), deny(warnings))))]
8
9extern crate alloc;
10
11mod str;
12pub use crate::str::CheapStr;