-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.zig.zon
75 lines (72 loc) · 3.55 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.{
// 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.
//
// It is redundant to include "zig" in this name because it is already
// within the Zig package namespace.
.name = "toyskkserv",
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.0.6",
// This field is optional.
// This is currently advisory only; Zig does not yet do anything
// with this value.
//.minimum_zig_version = "0.11.0",
// This field is optional.
// Each dependency must either provide a `url` and `hash`, or a `path`.
// `zig build --fetch` can be used to fetch all dependencies of a package, recursively.
// Once all dependencies are fetched, `zig build` no longer requires
// internet connectivity.
.dependencies = .{
.@"zig-cli" = .{
.url = "git+https://github.com/sam701/zig-cli?ref=last-zig-0.13#9a94c4803a52e54c26b198096d63fb5bde752da2",
.hash = "1220ab73fb7cc11b2308edc3364988e05efcddbcac31b707f55e6216d1b9c0da13f1",
},
.@"btree-zig" = .{
.url = "git+https://github.com/almmiko/btree.c-zig#fc0d08558b5104991ae43c04d7b7c10a4be49aa7",
.hash = "1220c31ffe3b2e372cd02427548d21ea799f466772237e136326040406561096f7f3",
},
.protest = .{
.url = "git+https://github.com/ibokuri/protest#e7a9bc39c213985814a904b38e4506a6fbd537b2",
.hash = "122014736a658ee30f82e5c6e3038c95727690fe01fced2791b213dba10c65fba7c5",
},
.percent_encoding = .{
.url = "git+https://github.com/bcrist/zig-percent-encoding#5bb61c66cabf8cd7724f1539ad5c4c421ebd2c4c",
.hash = "12208ce96000d7263c362543c19236d68cbf1f05c69c7305ed4915db82970719c61d",
},
.zon_get_fields = .{
.url = "https://github.com/Durobot/zon_get_fields/archive/refs/tags/v0.1-beta.tar.gz",
.hash = "1220c231f84b21e03244a1459fd7c344dd699795506c5ba0c56f3f2c50ffc6fccb1b",
},
.jdz_allocator = .{
.url = "git+https://github.com/joadnacer/jdz_allocator#fefa1851875adfcb0e2bf6534c9d04e304be093f",
.hash = "12205cc579d7cd5d7419014d984c23fc0a410decc43176d87a4545189d7f1f69622d",
},
.network = .{
.url = "git+https://github.com/ikskuh/zig-network#8db1aa2f5efdf1e2ff6dd5f5f8efe1b4f44ff978",
.hash = "12203ae90636504172540e6e0feb2881affd82768af6f0a379cb84a3f70b53705fe5",
},
.@"euc-jis-2004-zig" = .{
.url = "git+https://github.com/waynezhang/euc-jis-2004-zig#5a3be46c07f429723454a3121c13a76963e5de1f",
.hash = "12202d1fa220984efd18d4b2a095b95591a1fd458ec112c2148ecb61f8594fd9ad11",
},
.chroma = .{
.url = "git+https://github.com/adia-dev/chroma-zig#c8cd1144aa800f87db3c4bee3d1f0fa0e8c96feb",
.hash = "12209a8a991121bba3b21f31d275588690dc7c0d7fa9c361fd892e782dd88e0fb2ba",
},
.temp = .{
.url = "git+https://github.com/abhinav/temp.zig#6c02e98497b32c78fb67db576dcbc9b1c42c1a04",
.hash = "122095027cb551451a12706f958487bacc9bec1dfcd8c6bdacff890fb8d641755a58",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
// For example...
//"LICENSE",
//"README.md",
},
}