radix-engine 1.3.1

Reference implementation of Radix Engine, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::module_inception)]

mod native_vm;
mod scrypto_vm;
mod versions;
mod vm;

/// Wasm validation, instrumentation and execution.
pub mod wasm;
/// Wasm runtime implementation.
pub mod wasm_runtime;

pub use native_vm::*;
pub use scrypto_vm::*;
pub use versions::*;
pub use vm::*;