gitextract_hv3_bjyn/ ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .vscode/ │ ├── C4.code-snippets │ └── settings.json ├── LICENSE ├── README.md ├── assets/ │ ├── wasm_tour.puml │ └── wasm_tour.xmind ├── docker-compose.yml ├── krustlet/ │ ├── README.md │ ├── bootstrap.sh │ └── greet-wasmcloud.yaml ├── restclient.http ├── wagi/ │ ├── functions/ │ │ ├── .cargo/ │ │ │ └── config.toml │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── get-todos/ │ │ │ ├── Cargo.toml │ │ │ └── src/ │ │ │ └── main.rs │ │ ├── modules.toml │ │ └── wagi │ └── server/ │ ├── .gitignore │ ├── .vscode/ │ │ ├── launch.json │ │ └── tasks.json │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.json │ ├── modules/ │ │ ├── fibonacci.wasm │ │ └── get-todos.wasm │ └── server.csproj └── wasmcloud/ ├── README.md ├── docker-compose.yml ├── mini-store/ │ ├── Cargo.toml │ ├── justfile │ ├── manifest.yaml │ └── src/ │ └── lib.rs └── tools/ ├── pf.sh └── wasm-to-oci