登录 注册
当前位置:主页 > 资源下载 > 17 > 一个用Rust编写的、可被编译为WASI WebAssembly的简易应用程序:rust-wasi-example

一个用Rust编写的、可被编译为WASI WebAssembly的简易应用程序:rust-wasi-example

  • 更新:2024-09-16 17:58:38
  • 大小:5KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

Rust WASI 示例 一个实现玩具程序,用于演示将 Rust 编译为并使用运行它。 配置 首先,让我们克隆 repo: git clone https://github.com/wasmerio/rust-wasi-example.git cd rust-wasi-example 确保你每晚都有最新版本的 Rust 并运行: rustup target add wasm32-wasi --toolchain nightly 建造 cargo +nightly build --target=wasm32-wasi --release cp target/wasm32-unknown-wasi/release/wasi-example.wasm . 跑步 # Install wasmer curl https://get.wasmer.io -sSfL | sh # Run the