Skip to content

Commit 04953db

Browse files
authored
Merge pull request #2902 from finos/client-reconnect
Add connection error/retry API and UI support
2 parents dcda6e4 + b966a8b commit 04953db

File tree

121 files changed

+1683
-669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+1683
-669
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ target-dir = "rust/target"
99
runner = 'wasm-bindgen-test-runner'
1010
rustflags = [
1111
"--cfg=web_sys_unstable_apis",
12-
"-Ctarget-feature=+bulk-memory,+simd128,+relaxed-simd",
12+
"-Ctarget-feature=+bulk-memory,+simd128,+relaxed-simd,+reference-types",
1313
]
1414

1515
[target.i686-pc-windows-msvc]

.github/actions/install-deps/action.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,23 +140,23 @@ runs:
140140
uses: dtolnay/rust-toolchain@nightly
141141
if: ${{ inputs.rust == 'true' && inputs.arch != 'aarch64' }}
142142
with:
143-
toolchain: nightly-2024-08-29
143+
toolchain: nightly-2025-02-01
144144
targets: wasm32-unknown-unknown
145145
components: rustfmt, clippy, rust-src
146146

147147
- name: Install rust (aarch64 OSX)
148148
uses: dtolnay/rust-toolchain@nightly
149149
if: ${{ inputs.rust == 'true' && inputs.arch == 'aarch64' && runner.os == 'macOS' }}
150150
with:
151-
toolchain: nightly-2024-08-29
151+
toolchain: nightly-2025-02-01
152152
targets: aarch64-apple-darwin
153153
components: rustfmt, clippy, rust-src
154154

155155
- name: Install rust (aarch64 Linux)
156156
uses: dtolnay/rust-toolchain@nightly
157157
if: ${{ inputs.rust == 'true' && inputs.arch == 'aarch64' && runner.os == 'Linux' }}
158158
with:
159-
toolchain: nightly-2024-08-29
159+
toolchain: nightly-2025-02-01
160160
targets: aarch64-unknown-linux-gnu
161161
components: rustfmt, clippy, rust-src
162162

0 commit comments

Comments
 (0)