-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.zig.zon
30 lines (30 loc) · 1.03 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
.{
.name = "curl",
.version = "0.1.0",
.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 = "12207d52e2cf89a5750ad273648c6f4cdeb5b4c19d171f0b1a3215cf592ca677fd94",
.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 = "1220c1854d7b4c2b5cbdd8ce6593c37e4bf1ac4032664735e1537c3848becb3b5834",
.lazy = true,
},
.mbedtls = .{
.url = "https://github.com/Mbed-TLS/mbedtls/archive/refs/tags/v3.6.0.tar.gz",
.hash = "1220358fd78ebfb68dde5b77787d5325f1f89e901d448ae0da0187811be53dd3ec7c",
.lazy = true,
},
},
}