wasmrun 0.19.0

A WebAssembly Runtime
1
2
3
4
5
6
7
8
9
10
11
12
//! Configuration module for Wasmrun

pub mod constants;
pub mod plugin;
pub mod server;

pub use constants::*;
pub use plugin::{ExternalPluginEntry, WasmrunConfig};
pub use server::{
    compile_project, run_server, setup_project_compilation, FileInfo, PortStatus, ServerConfig,
    ServerInfo,
};