wacc 2.0.0

Web Assembly Cryptographic Constructs VM implementation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0

/// The interface to a key-value pairs store
pub mod pairs;
pub use pairs::Pairs;

/// The interface to a value stack
pub mod stack;
pub use stack::Stack;