mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-05-05 11:40:04 +00:00
Split crates and clean up structure of codebase (#294)
Co-authored-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
parent
bf700f9012
commit
4b00f5f143
88 changed files with 2989 additions and 1423 deletions
10
crates/detect-wasi/src/miniwasi.wast
Normal file
10
crates/detect-wasi/src/miniwasi.wast
Normal file
|
@ -0,0 +1,10 @@
|
|||
(module
|
||||
(import "wasi_snapshot_preview1" "proc_exit" (func $exit (param i32)))
|
||||
(memory $0 0)
|
||||
(export "memory" (memory $0))
|
||||
(export "_start" (func $0))
|
||||
(func $0
|
||||
(call $exit (i32.const 0))
|
||||
(unreachable)
|
||||
)
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue