Mintaka_Utils/
lib.rs

1// Copyright (c) TribuFu. All Rights Reserved.
2
3//! Mintaka Miscellaneous Utilities.
4
5#![allow(non_snake_case)]
6
7mod StringVec;
8
9#[cfg(not(target_arch = "wasm32"))]
10#[path = "ForeignString.rs"]
11mod _ForeignString;
12#[cfg(not(target_arch = "wasm32"))]
13pub use self::_ForeignString::*;