-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
38 lines (38 loc) · 1.94 KB
/
build.zig.zon
File metadata and controls
38 lines (38 loc) · 1.94 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
.{
.name = .Zigscient,
// Remove `-dev` when tagging a new release and add it back on the next development cycle.
.version = "0.16.0",
// 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.16.0",
// 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.16.0",
.dependencies = .{
.known_folders = .{
.url = "https://github.com/LamplightWorks/known-folders/archive/71f0a3d660401ee461cc42ae1f2360f4b83084d3.tar.gz",
.hash = "known_folders-0.0.0-Fy-PJjrKAAAY9ALC7ALIxFsmKFP314HJw6v3NLSS3NDB",
},
.diffz = .{
.url = "https://github.com/LamplightWorks/diffz/archive/aa11caef328a3f20f2493f8fd676a1dfa7819246.tar.gz",
.hash = "diffz-0.0.1-G2tlIYrNAQAQx3cuIp7EVs0xvxbv9DCPf4YuHmvubsrZ",
},
.lsp_kit = .{
.url = "https://github.com/LamplightWorks/lsp-kit/archive/98d6bed6e42a0866e1e2ba0867673d9f57ca6687.tar.gz",
.hash = "lsp_kit-0.1.0-bi_PLwozDAApVpvVJHz80NPklig5biWlZCkyxjFbOtiD",
// .path = "../../../zig-lsp-kit",
},
.extended_zccs = .{
.url = "https://github.com/llogick/extended-zccs/archive/1190578b989664798159ce019683c9b822fe0788.tar.gz",
.hash = "extended_zccs-0.16.0-dev-zEaUNuWZDgA6dLgf-4XplKyTLbiCDL_D-Fww7NUi3vvC",
// .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,
},
},
.paths = .{""},
.fingerprint = 0x77c02601c0deba5e,
}