mintrt 0.1.2

Security-featured runtime for lua.
Documentation
//     <<*>> Revenge of snowflake.
//     -^v-  SASWE
//     @ This source code is licensed under a dual license model:
//       1. MPL-2.0 for non-commercial use only
//       2. Commercial License for commercial use
//       See LICENSE and LICENSE_COMMERCIAL files for details.

//! Mint Runtime Library
//! 
//! 提供Lua安全沙箱和进程间通信能力

pub mod security;
pub mod ipc;
pub mod modules;
pub mod i18n;
pub mod config;
pub mod runtime;

// 重新导出常用类型
pub use security::{Permission, SAuthBasicCtrl};
pub use ipc::TransmitManager;
pub use config::{entity_ro, entity_usr};