wasmrun 0.19.0

A WebAssembly Runtime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// TODO: Implement Python runtime with CPython WASM

#[allow(dead_code)] // TODO: Will be used when Python runtime is fully implemented
pub struct PythonRuntime;

#[allow(dead_code)]
impl PythonRuntime {
    pub fn new() -> Self {
        Self
    }
}

impl Default for PythonRuntime {
    fn default() -> Self {
        Self::new()
    }
}