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

#![forbid(unsafe_code)]

pub mod checker;
pub mod common;
pub mod compiler;
pub mod config;
pub mod errors;
pub mod evaluator;
mod genesis_accounts;
pub mod preprocessor;
pub mod testsuite;

#[cfg(test)]
pub mod tests;