module_util/
lib.rs

1#![doc(
2    html_logo_url = "https://raw.githubusercontent.com/threadexio/module-rs/master/assets/icon.png"
3)]
4#![doc = include_str!("../README.md")]
5#![cfg_attr(module_nightly, feature(doc_cfg))]
6#![forbid(unsafe_code)]
7#![no_std]
8extern crate self as module_util;
9
10extern crate alloc;
11
12#[cfg(feature = "std")]
13extern crate std;
14
15pub mod evaluator;
16
17#[cfg(feature = "file")]
18pub mod file;
19
20/// `Result<T, module::Error>`
21pub type Result<T, E = module::Error> = core::result::Result<T, E>;