Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WASIX #3422

Merged
merged 560 commits into from
Feb 23, 2023
Merged

WASIX #3422

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
560 commits
Select commit Hold shift + click to select a range
1dad3dd
Added more unit tests and confirmed the cache is now working properly…
john-sharratt Jan 3, 2023
2589031
Added a hack so that the coreutils webc works again
john-sharratt Jan 4, 2023
0562a2b
Added a hack so that the coreutils webc works again
john-sharratt Jan 4, 2023
663e97c
Added memory usage data so that it can be accounted for in the metrics
john-sharratt Jan 6, 2023
5d2767d
Renamed the file system memory usage property
john-sharratt Jan 6, 2023
82696df
Renamed the file system memory usage property
john-sharratt Jan 6, 2023
a6da4ec
Now using the tokio thread pool for faster spin up performance
john-sharratt Jan 7, 2023
4509546
Reduced some of the verbose logging
john-sharratt Jan 8, 2023
91549d3
Fixed an issue where file descriptors were being leaked in certain si…
john-sharratt Jan 8, 2023
1d0c9d9
Reduced the verbose logging on the poll function
john-sharratt Jan 8, 2023
fe2fd24
Reduced the verbose logging on the poll function
john-sharratt Jan 8, 2023
df30d25
Added more debug information for the polling
john-sharratt Jan 8, 2023
30b0207
Added more debug information for the polling
john-sharratt Jan 8, 2023
a6a0d65
Added a fix so multiple clocks dont get triggered
john-sharratt Jan 8, 2023
466082e
Added a fix for the polling so that it does not lose write events
john-sharratt Jan 9, 2023
a5ccc44
wasix: Reuse same runtime in PluggableRuntimeImplementation
theduke Jan 10, 2023
d34ce88
wasix: Allow constructing a PluggableRuntime with existing task manager
theduke Jan 10, 2023
e2af53f
fix: Fix JS build errors introduced in PluggableRuntimeImplementation…
theduke Jan 10, 2023
5776afc
Fixed a panic on double directory close calls
john-sharratt Jan 11, 2023
a143bb3
Merge branch 'wasix' of github.com:wasmerio/wasmer into wasix
john-sharratt Jan 11, 2023
505d2a3
Fixed a major deadlock in the socket code
john-sharratt Jan 11, 2023
1bb960f
Fixed a major deadlock in the socket code
john-sharratt Jan 11, 2023
703ef66
Fixed a bug where closed sockets would cause the polling loop to spin
john-sharratt Jan 12, 2023
a0ede7c
Added a fix for fd_close
john-sharratt Jan 12, 2023
0feb0a5
Fixed a blocking issue when an accept is issued at the same time as a…
john-sharratt Jan 12, 2023
b4de67b
Removed some left over blah messages
john-sharratt Jan 13, 2023
8ca8db8
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 13, 2023
3ebf3be
Fixed a major bug where the polling loop with a zero time was returni…
john-sharratt Jan 14, 2023
10b4d44
cargo fmt
john-sharratt Jan 14, 2023
c4727eb
Merge branch 'wasix' of github.com:wasmerio/wasmer into wasix
john-sharratt Jan 14, 2023
ba9f2f6
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 16, 2023
0804f13
Rename WasiState::new() to WasiState::builder()
Jan 10, 2023
5760749
Renamed all WasiState::new() calls
Jan 10, 2023
c5dbfb6
Apply feedback from @theduke
Jan 16, 2023
bc18e5d
Missed a word from the deprecation note
Jan 16, 2023
394cf83
chore: Remove unused import
theduke Jan 16, 2023
701704a
fix: Fix missing field in enum binding (JS target)
theduke Jan 16, 2023
5e7517f
Implement Debug for BusSpawnedProcessJoin
theduke Jan 16, 2023
ed15165
fix: wasix http client: properly forward response headers
theduke Jan 16, 2023
7e1e9fa
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 16, 2023
8ce631a
Wasi bindings generator: derive Hash for Signal,Snapshot0Clockid
theduke Jan 17, 2023
07b428d
codegen: Re-run wasi types generator
theduke Jan 17, 2023
374e8b0
chore: Remove unused import
theduke Jan 17, 2023
433a91a
deps: Update tokio due to CVE
theduke Jan 17, 2023
26c41d3
build: Clarify ring dependency license in deny.toml
theduke Jan 17, 2023
9e85fc8
build: Fix feature flags for vfs crate in Makefile test
theduke Jan 17, 2023
30ec91d
Fixed for a futex race conditon and infinite polling
john-sharratt Jan 18, 2023
27d020d
Merge branch 'wasix' of github.com:wasmerio/wasmer into wasix
john-sharratt Jan 18, 2023
67a1a89
Fix for the read ready event on local networking which was missing ev…
john-sharratt Jan 19, 2023
1a0a1e5
Removed peek_from which is not needed anymore and adds complexity
john-sharratt Jan 19, 2023
91762ce
Fixed an issue where the process does not properly exit
john-sharratt Jan 19, 2023
902670a
Restore changes from master
theduke Jan 19, 2023
d9f1018
Fixed a compile issue on the module cache
john-sharratt Jan 20, 2023
e970704
feat: Implement WASIX ControlPlane Thread Limits
theduke Jan 18, 2023
a9e972c
tests: Add a commented out test for fd_mmap memory
theduke Jan 23, 2023
d1bae19
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 23, 2023
a139f71
chore: Fix Typo in Error Message
theduke Jan 24, 2023
fe37060
Add an empty wasmer-sys-utils crate
theduke Jan 23, 2023
f925724
refactor: Move fd_memory from wasi to sys-utils crate
theduke Jan 23, 2023
8259512
Delete unused host_ws.rs file, and move to sys-utils
theduke Jan 24, 2023
a155340
Move WasiThreadError to os::task::thread submodule
theduke Jan 24, 2023
9aa6a07
wasi: Move DummyWaker to utils and add comments
theduke Jan 24, 2023
f5cfb59
chore: Update comment to reflect implementation changes
theduke Jan 24, 2023
43653bc
tests: Move fd_mmap_memory test to sys-utils crate
theduke Jan 25, 2023
1f43832
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 25, 2023
5cf768d
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 25, 2023
42f58d0
Merge remote-tracking branch 'origin/master' into wasix
theduke Jan 28, 2023
28620c8
Merge branch 'master' into wasix
theduke Jan 30, 2023
b05d77d
chore: Fix a whole bunch of clippy lints
theduke Jan 30, 2023
7d1a742
fix: Remove unsoundess in local networking buffers
theduke Jan 30, 2023
6660c57
chore: Fix clippy lints
theduke Jan 30, 2023
33eb586
wasi: Fix some dependency issues for JS builds
theduke Jan 30, 2023
932cd78
fix: Add missing import
theduke Jan 30, 2023
9c792c6
tests: Exclude wasix_http_client from main test run
theduke Jan 30, 2023
8d573b3
tests: Comment out fd memory tests
theduke Jan 30, 2023
1f3d003
build: Enable tokio time feature for wasi sys builds
theduke Jan 30, 2023
ffefa23
fix: Upgrade c-api to use new WasiPipe implementation
theduke Jan 30, 2023
a3cda99
Merge remote-tracking branch 'origin/master' into wasix
theduke Feb 2, 2023
3134c26
fix: Initialize WASI env in CLI
theduke Feb 2, 2023
50dd727
Delete unused C file (rebase left-over)
theduke Feb 2, 2023
64732b0
chore: Remove unused help file
theduke Feb 2, 2023
460576e
chore: remove outdated deploy related help comment
theduke Feb 2, 2023
1406c37
Change buf size hint to a const and add documentation
theduke Feb 2, 2023
f40c2f8
Virtual Host FS: Sort readdir() result by path
theduke Feb 2, 2023
5c358e6
tests: Fix incorrect test assertion for fs metadata
theduke Feb 2, 2023
1d7530d
Use custom types for Stdio (Stdout/In) types
theduke Feb 2, 2023
95b2fe9
Fixes for excessive memory allocations
john-sharratt Feb 3, 2023
c3a1834
Merge remote-tracking branch 'origin' into wasix
john-sharratt Feb 3, 2023
cbffb79
Merge branch 'wasix' of github.com:wasmerio/wasmer into wasix
john-sharratt Feb 3, 2023
97445c4
Async runtime memory and performance improvments
john-sharratt Feb 3, 2023
62026e4
wasix: Remove websocket support
theduke Feb 3, 2023
9bc44d4
Many performance and memory optimizations
john-sharratt Feb 4, 2023
21237eb
Merge remote-tracking branch 'origin' into wasix-john
john-sharratt Feb 7, 2023
7f8c085
Merge remote-tracking branch 'origin/master' into wasix
theduke Feb 7, 2023
26d4a6a
Many performance and memory optimizations
john-sharratt Feb 4, 2023
9813ba9
wasi: Rename WasiStateBuilder to WasiEnvBuilder
theduke Feb 7, 2023
5593340
wasi: Merge the vbus crate into wasi as a vbus submodule
theduke Feb 7, 2023
fa3e08a
wasi: Remove vbus Result alias
theduke Feb 7, 2023
956ad28
Improve WasiBuilder API
theduke Feb 7, 2023
29f7273
wasi: Remove state from BinFactory
theduke Feb 7, 2023
38dda36
Add VirtualTaskManager::build_memory() and remove module/memory from…
theduke Feb 8, 2023
a112bea
wasix: Strip out the VBus abstraction
theduke Feb 8, 2023
8b0d1fc
wasi: Partial unification of instance spawning
theduke Feb 8, 2023
7932b28
wasi: WasiRuntimeError summary error + wasi func run function helpers
theduke Feb 8, 2023
355d9d7
wasix: Rework VirtualTaskManager integration
theduke Feb 8, 2023
8b313d6
docs(wasi): Add FIXME s to various removed syscalls
theduke Feb 8, 2023
3dbdee7
refactor(wasi): Rename WasiRuntimeImplementation to WasiRuntime
theduke Feb 8, 2023
6936708
Add a WasiEnv::builder convenience constructor
theduke Feb 8, 2023
b6a57b5
Make WasiRuntime::networking accessor return a ref
theduke Feb 8, 2023
bd58c08
tests: Update some tests to new WasiEnv construction
theduke Feb 8, 2023
ff4ccf5
refactor(wasi): Make WasiState private
theduke Feb 8, 2023
c01b8b1
fix: Enable wasi/sys-thread feature for c api
theduke Feb 8, 2023
c0bde87
chore: Re-order WasiRuntime functions and add TODOs for removal
theduke Feb 8, 2023
b97bcde
chore: Remove unused WasiRuntime::log method
theduke Feb 8, 2023
fe75ef0
tests: Fix up name changes in a few tests
theduke Feb 8, 2023
0819c9a
build: Remove compiler-specific features from wasi crate
theduke Feb 8, 2023
a1eaa0f
chore: Remove duplicated code
theduke Feb 8, 2023
6ea7e53
chore: Make Wasifs::is_wasix private and add removal TODO
theduke Feb 8, 2023
ba815bd
wasi: Remove Clone impls from WasiVFork and WasiEnv
theduke Feb 8, 2023
082715a
wasi: Refactor TTY System
theduke Feb 8, 2023
ab99b2c
build: Enable sys-thread feature for wasi dep in c-api
theduke Feb 8, 2023
8f97dab
wasi: Add WasiPipe::new() constructor
theduke Feb 9, 2023
39fe9b7
wasi: Small WasiEnv cleanup
theduke Feb 9, 2023
b169061
wasi: More WasiEnvBuilder and Env construction flow improvements
theduke Feb 9, 2023
633e18f
fix: Update c-api to wasi changes
theduke Feb 9, 2023
c323919
fix: Fix c-api webc_runner feature
theduke Feb 9, 2023
6be6561
chore: Fix clippy lints
theduke Feb 9, 2023
4f9eab5
chore: Fix more clippy lints
theduke Feb 9, 2023
7e6a33d
Rename WasiEnvBuilder::build_func_env back to finalize
theduke Feb 9, 2023
27cb987
Fixed host_fs tests on Windows platforms
ptitSeb Feb 9, 2023
45e26c6
tests: Enable cranelfit feature for tests in wasmer-wasi
theduke Feb 9, 2023
c4b6c05
wasi: Introduce shared tokio task manager and respect current tokio env
theduke Feb 9, 2023
d7780fa
wasi: Call cleanup code after instance termination
theduke Feb 9, 2023
6b6ae4d
fix: Gate the fd_memory module to Linux targets
theduke Feb 10, 2023
7f78799
chore: Fix some clippy lints
theduke Feb 10, 2023
12a7de9
wasi: Fix some clippy issues, add #[allow] for others
theduke Feb 10, 2023
15fdd65
fix: Fix import paths in wasi-experimental-io-devices
theduke Feb 10, 2023
96f6d7c
Merge remote-tracking branch 'origin/master' into wasix
theduke Feb 10, 2023
02245ce
chore: Fix clippy lints
theduke Feb 10, 2023
9f600bf
tests(wasi): Remove some manual tests that are covered by snapshot tests
theduke Feb 10, 2023
ba7cb88
Fixed union_fs tests on Windows
ptitSeb Feb 10, 2023
68f0f6d
Host_fs doesn't have created timestamp on musl it seems (at least on …
ptitSeb Feb 10, 2023
f88d368
wasi: Add VirtualFile::close and close all fds on WasiFs cleanup
theduke Feb 10, 2023
9d86596
wasi: Fix up the wasi examples
theduke Feb 10, 2023
b1a080d
union_fs rename also needs some Windows backslash to slash transforma…
ptitSeb Feb 10, 2023
70d880e
chore: Fix clippy lints
theduke Feb 10, 2023
cca51c0
wasi: Replace custom VirtualFile::write with tokio::AsyncWrite::shutdown
theduke Feb 10, 2023
f77b61c
Made test-stage-0-wast test to use only 1 thread (to avoid potential …
ptitSeb Feb 10, 2023
825628f
fix: Do not purge reader when closing a WasiPipe
theduke Feb 10, 2023
0a96ec8
tests: Remove a test that has been moved to snapshot tests
theduke Feb 10, 2023
613cd1f
tests: Fix some tests
theduke Feb 10, 2023
715920e
Added a FIXME comment in the Makefile about the use on only 1 thread
ptitSeb Feb 10, 2023
318b06c
Merge branch 'wasix' of https://github.com/wasmerio/wasmer into wasix
ptitSeb Feb 10, 2023
6b9130b
tests: Temporarily disable WAI bindings generator test
theduke Feb 10, 2023
78537ad
Removed the only 1 threads for stage-0-test and ignore 2 flaky tests …
ptitSeb Feb 10, 2023
70e5b15
Merge branch 'wasix' of https://github.com/wasmerio/wasmer into wasix
ptitSeb Feb 10, 2023
01b6e57
wasi: Fix cleanup from async context when spawning
theduke Feb 10, 2023
1782958
tests: Update snapshots
theduke Feb 10, 2023
de419df
fix(wasi): Revert making WasiEnv::cleanup async
theduke Feb 10, 2023
0b6c07a
wasi: Improve global tokio runtime detection in TokioTaskManager
theduke Feb 10, 2023
715f71d
tests: Update wasix test snapshots
theduke Feb 10, 2023
7ab0568
build: Add cargo-insta to flake.nix
theduke Feb 10, 2023
2cfe241
refactor: Rename WasiPipe to Pipe and WasiBidirectionalPipePair to Bi…
theduke Feb 10, 2023
a33802e
chore(wasi): Remove legacy pipe reepxort
theduke Feb 10, 2023
60850bd
fix(wasi): Get the JS implementation to build (somewhat hackily)
theduke Feb 14, 2023
c12a60f
Many bug fixes and performance optimizations
john-sharratt Feb 15, 2023
7d86ef5
Merge remote-tracking branch 'origin' into wasix-john
john-sharratt Feb 15, 2023
cc83041
Merge branch 'wasix' of github.com:wasmerio/wasmer into wasix-major-f…
john-sharratt Feb 15, 2023
93a0cd6
cli: Add a --net flag to run command for enabling networking
theduke Feb 15, 2023
e385a01
build: Remove useless host-fs feature from vnet crate
theduke Feb 15, 2023
7437024
tests: Fix and update some of the WASIX snapshot tests
theduke Feb 15, 2023
da1361f
Make LocalNetworking internals private and add ::new()
theduke Feb 15, 2023
247de6f
Fixed wasmer_create_exe_main.c C file for non PIRITA_WASI config
ptitSeb Feb 15, 2023
e46c2e6
build(c-api): Enable more feature on the wasi dependency
theduke Feb 15, 2023
dc05bd1
Removed new ExportError::SerializationFailed, as it's not used
ptitSeb Feb 15, 2023
506da0b
chore: Remove all WASIX bus and event related syscalls + types
theduke Feb 15, 2023
4db0dd0
chore: Align read_to_slice function names between sys and js
theduke Feb 15, 2023
30dc848
c-api: Restore wasi_env_set_memory function
theduke Feb 15, 2023
4473be1
Replaced OsError with concrete types
john-sharratt Feb 15, 2023
4f117a6
Moved the notification implementation into a private scope
john-sharratt Feb 16, 2023
e82fc87
Made the replace operation a bit easier to read
john-sharratt Feb 16, 2023
31c6eca
Moved the OwnedRwReadLock and OwnedRwWriteLock implementation(s) into…
john-sharratt Feb 16, 2023
81bae8f
Merge remote-tracking branch 'origin' into wasix-major-fixes-and-tweaks
john-sharratt Feb 16, 2023
cbcae65
Merge remote-tracking branch 'origin/wasix-major-fixes-and-tweaks' in…
theduke Feb 16, 2023
b15d028
chore: Fix clippy lints
theduke Feb 16, 2023
a7cd600
chore: Fix clippy lints
theduke Feb 16, 2023
f0dbbc7
fix: Add missing import in c_api
theduke Feb 16, 2023
dab4327
build: Add binaryen and wabt to flake devshell
theduke Feb 16, 2023
30f7bdf
chore: Remove invalid FIXME comments
theduke Feb 16, 2023
76a2996
Remove libc dependency from vnet again
theduke Feb 16, 2023
384af9a
fix(wasi): Fix import path to also work for JS
theduke Feb 16, 2023
61bd7bd
wasi: Add OS to vnet error mapping
theduke Feb 16, 2023
5e290b5
chore: Formatting...
theduke Feb 16, 2023
4cb2d74
chore: Fix vnet Error mapping + some clippy lints
theduke Feb 16, 2023
b6f3ebc
wasi: Return the actual error from WasiEnvBuilder::run/run_with_module
theduke Feb 16, 2023
3e43325
wasi: Remove WasiPipe::channel to prevent misuse
theduke Feb 16, 2023
195ea89
wasi: Rename BidiPipe to DuplexPipe and add helper methods
theduke Feb 16, 2023
25128a4
wasi: Remove StubTaskManager
theduke Feb 16, 2023
8074253
VFS cleanuup: remove redundant dependencies and feature flags
theduke Feb 16, 2023
6d4a41a
deps: Remove unused dependency from vnet
theduke Feb 16, 2023
1c84918
fix: Fix OS error mapping on Windows
theduke Feb 16, 2023
6ffdc95
The error conversion function is needed by Deploy
john-sharratt Feb 19, 2023
61ab210
Pipe can now be split and combined
john-sharratt Feb 19, 2023
4b8bb01
Modified the TTY bridge so that its easier to consume from Deploy
john-sharratt Feb 19, 2023
c010866
Refactored the console so it accepts multiple pipes for STDIO
john-sharratt Feb 19, 2023
6a087bd
Added a channel method to the pipes
john-sharratt Feb 20, 2023
017592d
Added some methods to convert pipes into split components
john-sharratt Feb 20, 2023
d8c5736
Fixed the unit tests around the pipe object
john-sharratt Feb 20, 2023
9a5dd9f
Added a standard file that allows for writes to be intercepted - used…
john-sharratt Feb 20, 2023
439dd4f
Added some more file implementations that support the Console
john-sharratt Feb 20, 2023
5b54b81
Removed some old debug message that came from somewhere
john-sharratt Feb 20, 2023
5799efc
refactor: Rename DuelWriteFile to DualWriteFile
theduke Feb 20, 2023
c319a84
chore: Fix clippy lints
theduke Feb 20, 2023
f6aeddb
fix(wasi): Use proper import path for VMMemory
theduke Feb 20, 2023
7968cf4
tests: Fix stdin handling in wasi-wast tests
theduke Feb 20, 2023
697f218
HACK: Ignore a problematic wast test
theduke Feb 20, 2023
0533ca7
chore: Formatting...
theduke Feb 20, 2023
a78d577
tests: Enable networking for snapshot tests
theduke Feb 20, 2023
0112cd6
examples: Fix wasi pipes example
theduke Feb 20, 2023
244c5f6
fix: make Pipe::new() private and replace usage
theduke Feb 20, 2023
a328f32
Remove Pipe::default()
theduke Feb 20, 2023
0c6c27e
chore: Remove owned mutex doc tests
theduke Feb 20, 2023
09f8af3
tests: Slightly improve error message for get_wasmer_path
theduke Feb 20, 2023
669fbbd
tests: Fix wasi examples
theduke Feb 20, 2023
b42cd59
Use default_fs_backing() filesystem for c-api Wasi config
ptitSeb Feb 21, 2023
d471742
wasi: Env cleanup now at least flushes all file handles
theduke Feb 22, 2023
34c5bfe
c-api: wasi_env_delete now cleans up the WasiEnv state
theduke Feb 22, 2023
af746cf
chore: Don't ignore path creation error in create_exe code
theduke Feb 22, 2023
4d0460e
Merge remote-tracking branch 'origin/master' into wasix
theduke Feb 22, 2023
af24e33
examples: Add a wasi_manual_setup example
theduke Feb 22, 2023
7018bd4
Improve WasiEnv::cleanup(): close uniquely held file handles
theduke Feb 22, 2023
7ed3288
chore: Formatting
theduke Feb 22, 2023
4fd6a01
examples: Add some additional debug output to wasi example
theduke Feb 22, 2023
355a145
tests: Update snapshot tests
theduke Feb 22, 2023
675a7c2
wasi: Remove the hardcoded default boot from Console
theduke Feb 22, 2023
1b6f443
tests: Disable a few flaky snapshot tests
theduke Feb 22, 2023
16e92ff
Rename SpecialFile to DeviceFile
theduke Feb 22, 2023
134d2f6
Disable tcp client snapshot test due to hangs on CI
theduke Feb 22, 2023
df6434f
Ensure WasiEnv cleanup in CLI
theduke Feb 23, 2023
fc4d38f
tests: Skip stdin_stdout_sterr snapshot test on Windows/Mac
theduke Feb 23, 2023
6ac7a2d
tests: Snapshot limit dash to Linux
theduke Feb 23, 2023
74f2d18
tests: Ignore the sleep snapshot test on non-linux
theduke Feb 23, 2023
5cf54b4
[CREATE-EXE] Link with Security framework when cross-compiling on mac…
ptitSeb Feb 23, 2023
b88966c
tests: Ignore hanging test on Mac OS
theduke Feb 23, 2023
265d9f6
docs: Remove invalid/misleading comment
theduke Feb 23, 2023
7779e2e
chore: Formatting
theduke Feb 23, 2023
8c2aad2
wasi: Put a time limit on WasiEnv::cleanup to avoid infinite idling
theduke Feb 23, 2023
0a422d8
deps(wasi): Activate tokio time feature
theduke Feb 23, 2023
b9c7b81
HACK: Disable 3 create-exe integration tests
theduke Feb 23, 2023
99b43d6
tests: Remove stray dbg!() statement
theduke Feb 23, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
.DS_Store
.idea
.gdb_history
/.cargo/
**/.vscode
api-docs-repo/
/.cargo_home/
Expand All @@ -17,6 +18,7 @@ wasmer.toml
# Generated by tests on Android
/avd
/core
/vendor
out.txt
wapm.toml
build-capi.tar.gz
Expand Down
Loading