File tree 1 file changed +2
-22
lines changed
1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change 1
1
.{
2
- // This is the default name used by packages depending on this one. For
3
- // example, when a user runs `zig fetch --save <url>`, this field is used
4
- // as the key in the `dependencies` table. Although the user can choose a
5
- // different name, most users will stick with this provided value.
6
- //
7
- // It is redundant to include "zig" in this name because it is already
8
- // within the Zig package namespace.
9
- .name = "aindex" ,
10
-
11
- // This is a [Semantic Version](https://semver.org/).
12
- // In a future version of Zig it will be used for package deduplication.
13
- .version = "0.0.0" ,
14
-
15
- // This field is optional.
16
- // This is currently advisory only; Zig does not yet do anything
17
- // with this value.
2
+ .name = "fpindex" ,
3
+ .version = "2.0.0" ,
18
4
.minimum_zig_version = "0.13.0" ,
19
-
20
- // This field is optional.
21
- // Each dependency must either provide a `url` and `hash`, or a `path`.
22
- // `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
23
- // Once all dependencies are fetched, `zig build` no longer requires
24
- // internet connectivity.
25
5
.dependencies = .{
26
6
.httpz = .{
27
7
.url = "git+https://github.com/karlseguin/http.zig?ref=zig-0.13#7d2ddae87af9b110783085c0ea6b03985faa4584" ,
You can’t perform that action at this time.
0 commit comments