1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
// Copyright (c) The Libra Core Contributors
// SPDX-License-Identifier: Apache-2.0

//! Types and data used by the VM runtime

#[macro_use]
extern crate lazy_static;

#[cfg(any(test, feature = "testing"))]
mod proptest_types;

pub mod loaded_data;
pub mod native_functions;
pub mod native_structs;
pub mod type_context;
pub mod value;