forked from tree-sitter/tree-sitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.zig.zon
69 lines (69 loc) · 3.23 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
.{
.name = "tree-sitter",
.version = "0.25.0",
.paths = .{
"build.zig",
"build.zig.zon",
"lib/src",
"lib/include",
"README.md",
"LICENSE",
},
.dependencies = .{
.wasmtime_c_api_aarch64_android = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-aarch64-android-c-api.tar.xz",
.hash = "1220c7aa2e16936701ddffc65e50a0099ea694eb1c355cfb0e333ffd96fcdb2ecc0c",
.lazy = true,
},
.wasmtime_c_api_aarch64_linux = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-aarch64-linux-c-api.tar.xz",
.hash = "1220e0a747ae1ad3278da132d3ef9b0a7cf087933b9e41d8732604f168fabf4cb018",
.lazy = true,
},
.wasmtime_c_api_aarch64_macos = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-aarch64-macos-c-api.tar.xz",
.hash = "12208a9c81f8b0285c6f7eb16ee81af5239ea69a68070d9241da96fec1fd0ffa95f8",
.lazy = true,
},
.wasmtime_c_api_riscv64gc_linux = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-riscv64gc-linux-c-api.tar.xz",
.hash = "1220c4b15debe3856404dc797f9f738f10de250b4792f8f7fa32ff4e4d6ae48eb64e",
.lazy = true,
},
.wasmtime_c_api_s390x_linux = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-s390x-linux-c-api.tar.xz",
.hash = "1220c336d46a03b05f965382b6ca2cdbd13233ec073d6895925bd651c78400f19a7e",
.lazy = true,
},
.wasmtime_c_api_x86_64_android = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-android-c-api.tar.xz",
.hash = "12203f95fde44258bc81dbdefbef04f4346f69ceff629c605adb01ca30f7d518a0e9",
.lazy = true,
},
.wasmtime_c_api_x86_64_linux = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-linux-c-api.tar.xz",
.hash = "1220ed8ea76da5026c8b5e627abb4211e2aec363ceb0d286bad8051d74392c348f4b",
.lazy = true,
},
.wasmtime_c_api_x86_64_macos = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-macos-c-api.tar.xz",
.hash = "12206aa409b9e808bf36c509983867ef5c875298a105fec651fb07dc5828645f23fe",
.lazy = true,
},
.wasmtime_c_api_x86_64_mingw = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-mingw-c-api.zip",
.hash = "122085467714d8853ad4c0dd00b10b0723312996368415508f593a02dd1dd5ef8f7e",
.lazy = true,
},
.wasmtime_c_api_x86_64_musl = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-musl-c-api.tar.xz",
.hash = "12200a7981f6d45b6afa1bdb746afb1273eadca4ea663772455485e8fddcb3281f42",
.lazy = true,
},
.wasmtime_c_api_x86_64_windows = .{
.url = "https://github.com/bytecodealliance/wasmtime/releases/download/v25.0.2/wasmtime-v25.0.2-x86_64-windows-c-api.zip",
.hash = "122051f48cd7416c1bd662133e4cf2490210ab1dc722c5e120a0a5e844e919528359",
.lazy = true,
},
}
}