Compare commits

...

3 Commits

Author SHA1 Message Date
Bogdan-Ștefan Neacşu 262e00fb4e Revert "cargo update -p rustls@0.21.7 (#4404)"
This reverts commit ecc47cd418.
2024-02-28 16:32:59 +02:00
Bogdan-Ștefan Neacşu fe1be202be Run during PR 2024-02-28 13:48:39 +02:00
Bogdan-Ștefan Neacşu 26d137a5d0 Install clang 2024-02-28 13:43:35 +02:00
2 changed files with 17 additions and 13 deletions
+5 -1
View File
@@ -6,10 +6,11 @@ on:
- 'wasm/**' - 'wasm/**'
- 'clients/client-core/**' - 'clients/client-core/**'
- 'common/**' - 'common/**'
- '.github/workflows/ci-sdk-wasm.yml'
jobs: jobs:
wasm: wasm:
runs-on: [custom-linux] runs-on: [ custom-linux ]
env: env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
steps: steps:
@@ -43,6 +44,9 @@ jobs:
- name: Install wasm-bindgen-cli - name: Install wasm-bindgen-cli
run: cargo install wasm-bindgen-cli run: cargo install wasm-bindgen-cli
- name: Install clang
run: sudo apt update && sudo apt install -y clang
- name: "Build" - name: "Build"
run: make sdk-wasm-build run: make sdk-wasm-build
Generated
+12 -12
View File
@@ -3409,7 +3409,7 @@ dependencies = [
"futures-util", "futures-util",
"http", "http",
"hyper", "hyper",
"rustls 0.21.10", "rustls 0.21.7",
"tokio", "tokio",
"tokio-rustls 0.24.1", "tokio-rustls 0.24.1",
] ]
@@ -7997,7 +7997,7 @@ dependencies = [
"once_cell", "once_cell",
"percent-encoding", "percent-encoding",
"pin-project-lite 0.2.13", "pin-project-lite 0.2.13",
"rustls 0.21.10", "rustls 0.21.7",
"rustls-native-certs", "rustls-native-certs",
"rustls-pemfile", "rustls-pemfile",
"serde", "serde",
@@ -8382,12 +8382,12 @@ dependencies = [
[[package]] [[package]]
name = "rustls" name = "rustls"
version = "0.21.10" version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
dependencies = [ dependencies = [
"log", "log",
"ring 0.17.4", "ring 0.16.20",
"rustls-webpki", "rustls-webpki",
"sct 0.7.0", "sct 0.7.0",
] ]
@@ -8415,12 +8415,12 @@ dependencies = [
[[package]] [[package]]
name = "rustls-webpki" name = "rustls-webpki"
version = "0.101.7" version = "0.101.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" checksum = "3c7d5dece342910d9ba34d259310cae3e0154b873b35408b787b59bce53d34fe"
dependencies = [ dependencies = [
"ring 0.17.4", "ring 0.16.20",
"untrusted 0.9.0", "untrusted 0.7.1",
] ]
[[package]] [[package]]
@@ -9763,7 +9763,7 @@ version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [ dependencies = [
"rustls 0.21.10", "rustls 0.21.7",
"tokio", "tokio",
] ]
@@ -9824,7 +9824,7 @@ checksum = "212d5dcb2a1ce06d81107c3d0ffa3121fe974b73f068c8282cb1c32328113b6c"
dependencies = [ dependencies = [
"futures-util", "futures-util",
"log", "log",
"rustls 0.21.10", "rustls 0.21.7",
"tokio", "tokio",
"tungstenite", "tungstenite",
] ]
@@ -10256,7 +10256,7 @@ dependencies = [
"httparse", "httparse",
"log", "log",
"rand 0.8.5", "rand 0.8.5",
"rustls 0.21.10", "rustls 0.21.7",
"sha1", "sha1",
"thiserror", "thiserror",
"url", "url",