Rust WebAssembly 工作坊教程

Rust WebAssembly 工作坊教程

rust-wasm-workshopA Workshop for Learning Rust and WebAssembly项目地址:https://gitcode.com/gh_mirrors/ru/rust-wasm-workshop

1. 项目的目录结构及介绍

rust-wasm-workshop/
├── getting-started/
│   ├── src/
│   │   ├── lib.rs
│   │   └── utils.rs
│   ├── Cargo.toml
│   └── index.html
├── going-further/
│   ├── src/
│   │   ├── lib.rs
│   │   └── utils.rs
│   ├── Cargo.toml
│   └── index.html
├── putting-it-all-together/
│   ├── src/
│   │   ├── lib.rs
│   │   └── utils.rs
│   ├── Cargo.toml
│   └── index.html
├── LICENSE
└── README.md
  • getting-started/: 包含入门教程的代码和资源。
  • going-further/: 包含进阶教程的代码和资源。
  • putting-it-all-together/: 包含综合教程的代码和资源。
  • LICENSE: 项目许可证文件。
  • README.md: 项目说明文档。

2. 项目的启动文件介绍

每个模块的启动文件是 index.html,它负责加载和运行 Rust 编译生成的 WebAssembly 模块。例如,在 getting-started/ 目录下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Getting Started</title>
    <script type="module">
        import init from './pkg/getting_started.js';
        init().then(() => {
            console.log("WebAssembly module loaded");
        });
    </script>
</head>
<body>
    <h1>Getting Started with Rust and WebAssembly</h1>
</body>
</html>

3. 项目的配置文件介绍

每个模块的配置文件是 Cargo.toml,它定义了 Rust 项目的依赖和构建配置。例如,在 getting-started/ 目录下:

[package]
name = "getting-started"
version = "0.1.0"
edition = "2018"

[lib]
crate-type = ["cdylib"]

[dependencies]
wasm-bindgen = "0.2"
  • [package]: 定义项目的基本信息,如名称和版本。
  • [lib]: 指定库的类型为 cdylib,用于生成 WebAssembly 模块。
  • [dependencies]: 定义项目依赖,如 wasm-bindgen

以上是基于 https://github.com/rylev/rust-wasm-workshop.git 项目的教程内容。

rust-wasm-workshopA Workshop for Learning Rust and WebAssembly项目地址:https://gitcode.com/gh_mirrors/ru/rust-wasm-workshop

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

潘将栩

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值