-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
48 lines (48 loc) · 2.45 KB
/
Copy pathbuild.zig.zon
File metadata and controls
48 lines (48 loc) · 2.45 KB
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
// Not intended to be consumed as a package.
.{
.name = .Zigscient,
.version = "0.17.0-dev",
// The minimum Zig version that is required to compile and test this project.
// Must be a Zig version that is downloadable from https://ziglang.org/download/ or a mirror.
.minimum_zig_version = "0.17.0-dev.1435+69a26976e",
// The minimum Zig version that the server's build_runner can handle:
// A breaking change to the Zig Build System should be handled by updating the server's build runner (see src/build_runner)
.minimum_runtime_zig_version = "0.17.0-dev.1435+69a26976e",
// Would like to be accurate even during a dev cycle,
// but there isn't an easy way to automate this based on the last cherry-picked commit
.compiler_internals_version = "0.17.0-dev.1436+134a2c666",
// The integrated langref version. A valid Zig release version or "master"
// Used in links to documentation, ie https://ziglang.org/documentation/0.16.0/
.langref_version = "master",
.dependencies = .{
.known_folders = .{
.url = "https://github.com/LamplightWorks/known-folders/archive/6da0d0c41b78b9ed2d34fa364fcb81b5ebece6c4.tar.gz",
.hash = "known_folders-0.0.0-Fy-PJiDLAAB98m3uYUzatrTb2mO2fpvwx2zpSroEtfbO",
},
.diffz = .{
.url = "https://github.com/LamplightWorks/diffz/archive/aac8aa99c436ab8277b0711922aad062c0167b12.tar.gz",
.hash = "diffz-0.0.1-G2tlISvOAQDORzPTSxDgiKwlHuADKeJMdJrw4kRfLufj",
// .path = "../../../diffz",
},
.lsp_kit = .{
.url = "https://github.com/LamplightWorks/lsp-kit/archive/d148676ace1eaecf3c703ce7d350d0e94e502ed7.tar.gz",
.hash = "lsp_kit-0.1.0-bi_PLwc2DACoR7VTz_qKFXUvtx7veHvWcTQvP9pDFLpk",
// .path = "../../../lws-lsp-kit",
},
.extended_zccs = .{
.url = "https://github.com/llogick/extended-zccs/archive/2bbd0af49c2afbfca663828de9113d3ddf540c15.tar.gz",
.hash = "extended_zccs-0.17.0-dev-zEaUNsRqDgAjA3BCDNhY6Hp67ZNo14R5cAeBW5cX_P_M",
// .path = "../../../extended-zccs",
},
.tracy = .{
.url = "https://github.com/wolfpld/tracy/archive/refs/tags/v0.13.1.tar.gz",
.hash = "N-V-__8AAOncKwEm1F9c5LrT7HMNmRMYX8-fAoqpc6YyTu9X",
.lazy = true,
},
.standalone_test_cases = .{
.path = "test/standalone",
},
},
.paths = .{""},
.fingerprint = 0x77c02601c0deba5e,
}