rexlang-util 3.9.11

Rex: A strongly-typed, pure, implicitly parallel functional programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![forbid(unsafe_code)]
#![cfg_attr(not(test), deny(clippy::unwrap_used, clippy::expect_used))]

pub mod gas;
pub mod imports;
pub mod sha256;
pub mod stdlib;

pub use gas::{GasCosts, GasMeter, OutOfGas};
pub use imports::{ImportPathError, resolve_local_import_path};
pub use sha256::sha256_hex;
pub use stdlib::stdlib_source;