irox-tools 0.11.1

Stuff that should have been in the Rust STL, but aren't
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: MIT
// Copyright 2025 IROX Contributors
//

//!
//! Various utilities and helpers

pub mod base64;
pub mod identifier;
crate::cfg_feature_std! {
    pub mod scanner;
}
pub mod bases;
pub mod uuid;
crate::cfg_feature_alloc! {
    pub mod levenshtein;
}