Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
aa838a8
Wasm Runtime. Initial commit
isbm Jan 25, 2026
071ad80
Update mod doc for the initial scaffold
isbm Jan 25, 2026
2e667f9
Update rust-toolchain.toml to Rust 1.93.0
isbm Jan 25, 2026
a1be0c5
Update dependencies
isbm Jan 25, 2026
5ee7fd7
Fix python init.
isbm Jan 25, 2026
26b2d75
Get rid of direct unwrap()
isbm Jan 25, 2026
2f6dbee
Fix broken Makefile so the actions stop failing
isbm Jan 25, 2026
a1fc346
Allow ModRequest to be cloned
isbm Jan 26, 2026
ae3fbb9
Update/upgrade dependencies
isbm Jan 26, 2026
9e50ece
Implement a basic WASM runtime module
isbm Jan 26, 2026
c0b2ffc
Add an example of WASM module
isbm Jan 26, 2026
7067101
Update gitignore
isbm Jan 26, 2026
b184a63
Add example runner
isbm Jan 26, 2026
9f68ae7
Lintfixes
isbm Jan 26, 2026
15e767c
Add request in-place modification
isbm Jan 26, 2026
7b5eaf4
Fix WASM stripping for a regular Go
isbm Jan 26, 2026
2ac9c49
Fix JSON output
isbm Jan 26, 2026
5cb2bd5
Update hello example: take care of a specific key
isbm Jan 26, 2026
06bd1af
Add a caller example: how to make system calls from within the WASM s…
isbm Jan 26, 2026
9a1aec0
Update dependencies
isbm Jan 27, 2026
44187d4
Drop a few log examples
isbm Jan 27, 2026
d0385dd
Extend a Sysinspect ergonomics wrapper for Go language for logger
isbm Jan 27, 2026
412fc4d
Forward logs from the Wasi lib
isbm Jan 27, 2026
907c25b
Add Wasm/WASI tutorial
isbm Jan 27, 2026
3c8a759
Update gitignore
isbm Jan 27, 2026
2dbf9de
Update WASI tutor
isbm Jan 27, 2026
10ab539
Add an example module in Rust
isbm Jan 27, 2026
a120f84
Add reader example in Go
isbm Jan 27, 2026
0b9b482
Update docs/tutorial/wasm_modules_tutor.rst
isbm Jan 27, 2026
43fc869
Update modules/runtime/wasm-runtime/examples/caller/sysinspect/sysins…
isbm Jan 27, 2026
ec6122f
Update modules/runtime/wasm-runtime/examples/caller/Makefile
isbm Jan 27, 2026
6df1b86
Implement mod lister
isbm Jan 27, 2026
c7f8d3e
Enable log forwarding
isbm Jan 27, 2026
bfe2c67
Cleanup, add module help render
isbm Jan 27, 2026
74a2c87
Update modules/runtime/wasm-runtime/examples/caller/sysinspect/sysins…
isbm Jan 27, 2026
55a37b2
Update modules/runtime/wasm-runtime/examples/caller/sysinspect/sysins…
isbm Jan 27, 2026
47c0c5f
Update docs/tutorial/wasm_modules_tutor.rst
isbm Jan 27, 2026
e97dae2
Use error reason for better info
isbm Jan 27, 2026
0ed4511
Mute params that aren't yet implemented
isbm Jan 27, 2026
2704dfe
Return accidentally forgotten "options" which renders the whole RT br…
isbm Jan 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
**/target/
docs/_build
man/*8
package/
Expand All @@ -10,3 +10,4 @@ package/
/*/.bin/
/*/html-docs
.gitignore
**/build/
Loading
Loading