tari_engine 0.29.0

Tari template runtime engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2022 The Tari Project
// SPDX-License-Identifier: BSD-3-Clause

mod error;
pub use error::*;

mod environment;

mod module;
pub use module::{LoadedWasmTemplate, WasmModule};

mod metering;
mod process;

pub use process::WasmProcess;

mod limiting_tunable;
mod mem_writer;