1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-07-31 15:24:23 +03:00

Update matrix-rust-sdk-crypto-wasm to v14.0.1. (#4710)

* Bump rust sdk to 14.0.0

* Remove duplicate type declarations

These now match the types in the underlying library, so can be removed.

* bump to 14.0.1

* Use new `OutgoingRequest` type from wasm library

* fix types

* update lockfile
This commit is contained in:
Richard van der Hoff
2025-02-22 09:07:29 +00:00
committed by GitHub
parent e49a0a5013
commit 8ab9025282
9 changed files with 17 additions and 53 deletions

View File

@ -16,6 +16,7 @@ limitations under the License.
import * as RustSdkCryptoJs from "@matrix-org/matrix-sdk-crypto-wasm";
import { type Mocked } from "jest-mock";
import { type OutgoingRequest } from "@matrix-org/matrix-sdk-crypto-wasm";
import {
isVerificationEvent,
@ -28,7 +29,7 @@ import {
type Verifier,
VerifierEvent,
} from "../../../src/crypto-api/verification";
import { type OutgoingRequest, type OutgoingRequestProcessor } from "../../../src/rust-crypto/OutgoingRequestProcessor";
import { type OutgoingRequestProcessor } from "../../../src/rust-crypto/OutgoingRequestProcessor";
import { type IDeviceKeys } from "../../../src/@types/crypto";
import { EventType, MatrixEvent, MsgType } from "../../../src";