Skip to main content

osom_lib_strings/
lib.rs

1//! This crate defines various string helpers. All of the structs
2//! are ABI stable (as in `#[repr(C)]`).
3//!
4//! The crate is `#![no_std]`.
5#![deny(warnings)]
6#![allow(unused_features)]
7#![cfg_attr(docsrs, feature(doc_cfg))]
8#![cfg_attr(docsrs, allow(unused_attributes))]
9#![warn(clippy::all, clippy::pedantic)]
10#![allow(clippy::redundant_field_names, clippy::inline_always)]
11#![no_std]
12
13pub mod immutable;