-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace rust-sdk bindings with ones that work (#236)
* First pass of updating to new rust-sdk bindings * Fix index exports * Remove conflicting function * Update for `OlmMachine#sign` support * Emit decrypted to_device events * Clean up linter complaints * Update tests for new bindings * Appease the linter * Update for new mock http lib * Remove unused crypto models * Fix room tracker test * Use now-mostly-available attachment functions * Remove old bindings dependency * Use the OlmMachine sequencing correctly * Add required locks to rust handling * Wire up appservices to new crypto * Fix tests for new event emitter flow * Add dependency * Fix lint * Update rust-sdk
- Loading branch information
Showing
19 changed files
with
547 additions
and
465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { EncryptionEventContent } from "../models/events/EncryptionEvent"; | ||
|
||
/** | ||
* Information about a room for the purposes of crypto. | ||
* @category Encryption | ||
*/ | ||
export interface ICryptoRoomInformation extends Partial<EncryptionEventContent> { | ||
historyVisibility?: string; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.