Upgrade ruma
parent
bf54b17a2f
commit
ca88539ec4
|
@ -966,18 +966,14 @@ impl Client {
|
||||||
/// # use futures::executor::block_on;
|
/// # use futures::executor::block_on;
|
||||||
/// # use matrix_sdk::identifiers::RoomId;
|
/// # use matrix_sdk::identifiers::RoomId;
|
||||||
/// # use std::convert::TryFrom;
|
/// # use std::convert::TryFrom;
|
||||||
/// use matrix_sdk::events::room::message::{FormattedBody, MessageEventContent, TextMessageEventContent};
|
/// use matrix_sdk::events::room::message::{MessageEventContent, TextMessageEventContent};
|
||||||
/// # block_on(async {
|
/// # block_on(async {
|
||||||
/// # let homeserver = Url::parse("http://localhost:8080").unwrap();
|
/// # let homeserver = Url::parse("http://localhost:8080").unwrap();
|
||||||
/// # let mut client = Client::new(homeserver).unwrap();
|
/// # let mut client = Client::new(homeserver).unwrap();
|
||||||
/// # let room_id = RoomId::try_from("!test:localhost").unwrap();
|
/// # let room_id = RoomId::try_from("!test:localhost").unwrap();
|
||||||
/// use matrix_sdk_common::uuid::Uuid;
|
/// use matrix_sdk_common::uuid::Uuid;
|
||||||
///
|
///
|
||||||
/// let content = MessageEventContent::Text(TextMessageEventContent {
|
/// let content = MessageEventContent::Text(TextMessageEventContent::plain("Hello world"));
|
||||||
/// body: "Hello world".to_owned(),
|
|
||||||
/// formatted: None,
|
|
||||||
/// relates_to: None,
|
|
||||||
/// });
|
|
||||||
/// let txn_id = Uuid::new_v4();
|
/// let txn_id = Uuid::new_v4();
|
||||||
/// client.room_send(&room_id, content, Some(txn_id)).await.unwrap();
|
/// client.room_send(&room_id, content, Some(txn_id)).await.unwrap();
|
||||||
/// # })
|
/// # })
|
||||||
|
|
|
@ -17,7 +17,7 @@ js_int = "0.1.8"
|
||||||
[dependencies.ruma]
|
[dependencies.ruma]
|
||||||
git = "https://github.com/ruma/ruma"
|
git = "https://github.com/ruma/ruma"
|
||||||
features = ["client-api"]
|
features = ["client-api"]
|
||||||
rev = "9190bff1d03fb188aa1d24502129f9dd19a824e6"
|
rev = "ea2992a4120d34495d6f07f141350d8f2a3429d3"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
uuid = { version = "0.8.1", features = ["v4"] }
|
uuid = { version = "0.8.1", features = ["v4"] }
|
||||||
|
|
|
@ -1683,7 +1683,7 @@ mod test {
|
||||||
|
|
||||||
let plaintext = "It is a secret to everybody";
|
let plaintext = "It is a secret to everybody";
|
||||||
|
|
||||||
let content = MessageEventContent::Text(TextMessageEventContent::new_plain(plaintext));
|
let content = MessageEventContent::Text(TextMessageEventContent::plain(plaintext));
|
||||||
|
|
||||||
let encrypted_content = alice.encrypt(&room_id, content.clone()).await.unwrap();
|
let encrypted_content = alice.encrypt(&room_id, content.clone()).await.unwrap();
|
||||||
|
|
||||||
|
|
|
@ -37,10 +37,7 @@ pub use olm_rs::{
|
||||||
|
|
||||||
use matrix_sdk_common::{
|
use matrix_sdk_common::{
|
||||||
events::{
|
events::{
|
||||||
room::{
|
room::{encrypted::EncryptedEventContent, message::MessageEventContent},
|
||||||
encrypted::{EncryptedEventContent, MegolmV1AesSha2Content},
|
|
||||||
message::MessageEventContent,
|
|
||||||
},
|
|
||||||
Algorithm, AnySyncRoomEvent, EventJson, EventType, SyncMessageEvent,
|
Algorithm, AnySyncRoomEvent, EventJson, EventType, SyncMessageEvent,
|
||||||
},
|
},
|
||||||
identifiers::{DeviceId, RoomId},
|
identifiers::{DeviceId, RoomId},
|
||||||
|
@ -332,14 +329,15 @@ impl OutboundGroupSession {
|
||||||
|
|
||||||
let ciphertext = self.encrypt_helper(plaintext).await;
|
let ciphertext = self.encrypt_helper(plaintext).await;
|
||||||
|
|
||||||
EncryptedEventContent::MegolmV1AesSha2(MegolmV1AesSha2Content::new(
|
EncryptedEventContent::MegolmV1AesSha2(
|
||||||
matrix_sdk_common::events::room::encrypted::MegolmV1AesSha2ContentInit {
|
matrix_sdk_common::events::room::encrypted::MegolmV1AesSha2ContentInit {
|
||||||
ciphertext,
|
ciphertext,
|
||||||
sender_key: self.account_identity_keys.curve25519().to_owned(),
|
sender_key: self.account_identity_keys.curve25519().to_owned(),
|
||||||
session_id: self.session_id().to_owned(),
|
session_id: self.session_id().to_owned(),
|
||||||
device_id: (&*self.device_id).to_owned(),
|
device_id: (&*self.device_id).to_owned(),
|
||||||
},
|
}
|
||||||
))
|
.into(),
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check if the session has expired and if it should be rotated.
|
/// Check if the session has expired and if it should be rotated.
|
||||||
|
|
Loading…
Reference in New Issue