forked from jiacai2050/zig-curl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
32 lines (32 loc) · 1.05 KB
/
build.zig.zon
File metadata and controls
32 lines (32 loc) · 1.05 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
.{
.name = .curl,
.fingerprint = 0x3e01b4de1538b3f,
.version = "0.3.2",
.minimum_zig_version = "0.15.2",
.paths = .{
"src",
"libs",
"build.zig",
"build.zig.zon",
"LICENSE",
},
.dependencies = .{
.curl = .{
// https://github.com/curl/curl/releases/tag/curl-8_8_0
.url = "https://github.com/curl/curl/releases/download/curl-8_8_0/curl-8.8.0.tar.gz",
.hash = "N-V-__8AAHipPQF9UuLPiaV1CtJzZIxvTN61tMGdFx8LGjIV",
.lazy = true,
},
// https://github.com/madler/zlib/releases/tag/v1.3.1
.zlib = .{
.url = "https://github.com/madler/zlib/releases/download/v1.3.1/zlib-1.3.1.tar.gz",
.hash = "N-V-__8AAJj_QgDBhU17TCtcvdjOZZPDfkvxrEAyZkc14VN8",
.lazy = true,
},
.mbedtls = .{
.url = "https://github.com/Mbed-TLS/mbedtls/archive/refs/tags/v3.6.0.tar.gz",
.hash = "N-V-__8AAFrtpQI1j9eOv7aN3lt3eH1TJfH4npAdRIrg2gGH",
.lazy = true,
},
},
}