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]` unless the `std` feature is enabled.
5//!
6//! Enable `serde` support by adding `serde` feature.
7#![deny(warnings)]
8#![allow(unused_features)]
9#![cfg_attr(docsrs, feature(doc_cfg))]
10#![cfg_attr(docsrs, allow(unused_attributes))]
11#![warn(clippy::all, clippy::pedantic)]
12#![allow(clippy::redundant_field_names, clippy::inline_always)]
13#![cfg_attr(not(feature = "std"), no_std)]
14
15pub mod immutable;