Skip to content

Commit a0b49d0

Browse files
Update to curl 8.9.0 (#566)
* Update to curl 8.9.0 * Don't use centos 7 any more --------- Co-authored-by: Alex Crichton <alex@alexcrichton.com>
1 parent 9cfd9a7 commit a0b49d0

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- build: openssl-110
5353
os: ubuntu-latest
5454
rust: stable
55-
docker: centos7
55+
docker: alma8
5656
target: x86_64-unknown-linux-gnu
5757
- build: macos
5858
os: macos-latest
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM centos:7
1+
FROM almalinux:8
22

3-
RUN yum update -y
4-
RUN yum install -y \
3+
RUN dnf update -y
4+
RUN dnf install -y \
55
gcc ca-certificates make \
66
openssl-devel \
77
pkgconfig

curl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "curl-sys"
3-
version = "0.4.73+curl-8.8.0"
3+
version = "0.4.74+curl-8.9.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>"]
55
links = "curl"
66
build = "build.rs"

curl-sys/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ fn main() {
100100
.replace("@LIBCURL_LIBS@", "")
101101
.replace("@SUPPORT_FEATURES@", "")
102102
.replace("@SUPPORT_PROTOCOLS@", "")
103-
.replace("@CURLVERSION@", "8.8.0"),
103+
.replace("@CURLVERSION@", "8.9.0"),
104104
)
105105
.unwrap();
106106

@@ -320,6 +320,7 @@ fn main() {
320320
.file("curl/lib/vtls/x509asn1.c");
321321
} else if target.contains("-apple-") {
322322
cfg.define("USE_SECTRANSP", None)
323+
.file("curl/lib/vtls/cipher_suite.c")
323324
.file("curl/lib/vtls/sectransp.c")
324325
.file("curl/lib/vtls/x509asn1.c");
325326
if xcode_major_version().map_or(true, |v| v >= 9) {

curl-sys/curl

Submodule curl updated 1320 files

0 commit comments

Comments
 (0)