-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.zig.zon
30 lines (26 loc) · 960 Bytes
/
build.zig.zon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
.{
// This is the default name used by packages depending on this one. For
// example, when a user runs `zig fetch --save <url>`, this field is used
// as the key in the `dependencies` table. Although the user can choose a
// different name, most users will stick with this provided value.
.name = "mvzr",
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.3.2",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
.minimum_zig_version = "0.12.0",
.dependencies = .{
// This space intentionally left blank
},
// Specifies the set of files and directories that are included in this package.
.paths = .{
"build.zig",
"build.zig.zon",
"src",
".gitignore",
"LICENSE",
"README.md",
},
}