dino_runtime 0.1.1

A Rust runtime for Deno
Documentation
1
2
3
4
5
6
7
use dino_runtime::run_js;
// V8 で TextEncoder をグローバル登録(JS注入なし)
fn main() {
    run_js("./dist/index.js".to_string(), None);
    
}