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#![no_std]
7extern crate self as module_util;
8
9extern crate alloc;
10
11#[cfg(feature = "std")]
12extern crate std;
13
14pub mod evaluator;
15
16#[cfg(feature = "file")]
17pub mod file;
18
19/// `Result<T, module::Error>`
20pub type Result<T, E = module::Error> = core::result::Result<T, E>;