Skip to content

Commit 0180cf1

Browse files
committed
update to Zig 0.15.1
1 parent ed0e02d commit 0180cf1

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -870,7 +870,7 @@ pub fn build(b: *std.Build) !void {
870870
.PACKAGE_NAME = "a suitable curl mailing list: https://curl.se/mail/",
871871
.PACKAGE_STRING = "curl",
872872
.PACKAGE_TARNAME = "curl",
873-
.PACKAGE_VERSION = b.fmt("{}", .{version}),
873+
.PACKAGE_VERSION = b.fmt("{f}", .{version}),
874874
.STDC_HEADERS = true,
875875
.USE_ARES = enable_ares,
876876
.USE_THREADS_POSIX = target.result.os.tag != .windows and !target.result.os.tag.isDarwin(),
@@ -908,7 +908,7 @@ pub fn build(b: *std.Build) !void {
908908
.USE_SCHANNEL = use_schannel,
909909
.USE_WATT32 = null, // DOS
910910
.CURL_WITH_MULTI_SSL = with_multi_sll,
911-
.VERSION = b.fmt("{}", .{version}),
911+
.VERSION = b.fmt("{f}", .{version}),
912912
._FILE_OFFSET_BITS = 64,
913913
._LARGE_FILES = null, // OS/400
914914
._THREAD_SAFE = null, // AIX 4.3

build.zig.zon

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
.{
22
.name = .curl,
33
.version = "8.15.0",
4-
.minimum_zig_version = "0.14.0",
4+
.minimum_zig_version = "0.15.1",
55
.dependencies = .{
66
.curl = .{
77
.url = "git+https://github.com/curl/curl?ref=curl-8_15_0#cfbfb65047e85e6b08af65fe9cdbcf68e9ad496a",
88
.hash = "N-V-__8AAHMjEAGr7410xUlFlTLfZMGyrDdMAWCCm7vhcwff",
99
},
1010
.zlib = .{
11-
.url = "git+https://github.com/allyourcodebase/zlib#6c72830882690c1eb2567a537525c3f432c1da50",
12-
.hash = "zlib-1.3.1-ZZQ7lVgMAACwO4nUUd8GLhsuQ5JQq_VAhlEiENJTUv6h",
11+
.url = "git+https://github.com/allyourcodebase/zlib#61e7df7e996ec5a5f13a653db3c419adb340d6ef",
12+
.hash = "zlib-1.3.1-ZZQ7lbYMAAB1hTSOKSXAKAgHsfDcyWNH_37ojw5WSpgR",
1313
.lazy = true,
1414
},
1515
.zstd = .{
@@ -23,8 +23,8 @@
2323
.lazy = true,
2424
},
2525
.openssl = .{
26-
.url = "git+https://github.com/allyourcodebase/openssl#f348124c5382bcc377f1b3277357cbf2ed2fb8db",
27-
.hash = "openssl-3.3.1-2-TC9C3Se3ZACF5WO_CjoD7Bt_X94oCsAAbbwhOp1rTZBe",
26+
.url = "git+https://github.com/allyourcodebase/openssl#cad7ccba47e42fa608ca655ec14ae33202df86e1",
27+
.hash = "openssl-3.3.2-TC9C3Wa3ZACgB1hZbrLOQCK9XccIBaW_F3imFfIeYP06",
2828
.lazy = true,
2929
},
3030
.mbedtls = .{

0 commit comments

Comments
 (0)