Skip to content

Commit

Permalink
增加包管理描述
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhongjia committed Dec 8, 2023
1 parent 2f053be commit b18a8d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion learn/advanced/package_management.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ outline: deep

zig 当前并没有一个中心化存储库,包可以来自任何来源,无论是本地还是网络上。

当前的包管理模式为,先在 `build.zig.zon` 添加包的元信息,然后在 `build.zig` 中引入包。

## 新的文件结构

`build.zig.zon` 这个文件存储了包的信息,它是 zig 新引入的一种简单数据交换格式,使用了 zig 的匿名结构和数组初始化语法。
Expand Down Expand Up @@ -55,7 +57,7 @@ zig 当前并没有一个中心化存储库,包可以来自任何来源,无

::: info 🅿️ 提示

当前 `nightly` 的 zig 支持了通过 [`zig fetch`](../environment/zig-command#zig-fetch) 来获取 hash 并写入到 `.zon` 中!
当前 `nightly` 的 zig 支持通过 [`zig fetch`](../environment/zig-command#zig-fetch) 来获取 hash 并写入到 `.zon` 中!

:::

Expand Down

0 comments on commit b18a8d8

Please sign in to comment.