gitextract_yv2v4z6_/ ├── .cargo/ │ └── config.toml ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ ├── feature_request.md │ │ └── question.md │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── cargo-vet.yml │ ├── ci.yml │ └── cla.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE.md ├── Makefile ├── README.md ├── crates/ │ ├── cli/ │ │ ├── Cargo.toml │ │ ├── benches/ │ │ │ ├── benchmark.rs │ │ │ └── scripts/ │ │ │ ├── hello_world/ │ │ │ │ └── hello_world.rb │ │ │ └── transformer/ │ │ │ ├── input.json │ │ │ ├── preload/ │ │ │ │ └── transformer.rb │ │ │ ├── ruby_wasm_entry.rb │ │ │ └── ruvy_entry.rb │ │ ├── build.rs │ │ ├── src/ │ │ │ └── main.rs │ │ └── tests/ │ │ └── integration_test.rs │ ├── core/ │ │ ├── Cargo.toml │ │ └── src/ │ │ ├── main.rs │ │ └── runtime.rs │ ├── ruby-wasm-assets/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ └── wasm-sys/ │ ├── .cargo/ │ │ └── config │ ├── Cargo.toml │ ├── build.rs │ ├── foo.c │ ├── src/ │ │ └── lib.rs │ └── wrapper.h ├── prelude/ │ ├── custom_printer.rb │ └── inspector.rb ├── ruby_examples/ │ ├── hello_world.rb │ └── use_preludes_and_stdin.rb ├── rust-toolchain.toml └── supply-chain/ ├── audits.toml └── config.toml