Skip to content

Commit b571e59

Browse files
authored
rust: fix ssl related build failure (#633)
also we didn't have reqwest setup properly follow up to: #632
1 parent 9aee0f3 commit b571e59

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
platform:
3434
- runner: ubuntu-latest
3535
target: x86_64
36-
before-script: yum install clang llvm llvm-devel -y && python3 -m ensurepip
36+
before-script: yum install clang llvm llvm-devel perl-IPC-Cmd -y && python3 -m ensurepip
3737
manylinux: manylinux_2_28
3838
- runner: ubuntu-latest
3939
target: aarch64-unknown-linux-gnu

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ insta = "1.39.0"
1717
jsonwebtoken = "9.3.1"
1818
lazy_static = "1.5.0"
1919
log = "0.4.25"
20-
reqwest = { version = "0.11.27", features = ["native-tls-vendored", "blocking"] }
20+
reqwest = { version = "0.11.27", features = ["native-tls-vendored", "blocking", "json"] }
2121
serde = { version = "1.0.215", features = ["derive"] }
2222
serde_json = "1.0"
2323
serde_plain = "1.0"

docs/netlify.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
environment = { NODE_VERSION = "20.18.1" }

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
]
3333
},
3434
"volta": {
35-
"node": "12.18.0"
35+
"node": "20.18.0"
3636
}
3737
}

0 commit comments

Comments
 (0)