We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f72b466 commit 0decdd2Copy full SHA for 0decdd2
README.md
@@ -42,7 +42,10 @@ zig fetch --save https://github.com/snowclipsed/katana/archive/refs/tags/v0.1.0.
42
```bash
43
git clone https://github.com/snowclipsed/katana
44
```
45
-
+3. Then, in your zig project, run:
46
+ ```bash
47
+ zig fetch --save <path/to/katana>
48
+ ```
49
Now, your build.zig.zon might look something like this:
50
51
```zig
@@ -54,7 +57,7 @@ Now, your build.zig.zon might look something like this:
54
57
.dependencies = .{
55
58
.katana = .{
56
59
.url = "../katana",
- .hash = "122099ca4b8c1e2b85203e73491785f91b8c585729a60d6c81b3201fcaaefe9b692c",
60
+ .hash = "122099ca4b8c1e2b85203e73491785f91b8c585729a60d6c81b3201fcaaefe9b692c", // this hash will be different!
61
},
62
63
.paths = .{
0 commit comments