test: Depend on ruma directly
parent
c964589049
commit
c705af1048
|
@ -11,9 +11,10 @@ repository = "https://github.com/matrix-org/matrix-rust-sdk"
|
|||
version = "0.2.0"
|
||||
|
||||
[dependencies]
|
||||
serde_json = "1.0.61"
|
||||
http = "0.2.3"
|
||||
lazy_static = "1.4.0"
|
||||
matrix-sdk-common = { version = "0.2.0", path = "../matrix_sdk_common" }
|
||||
matrix-sdk-test-macros = { version = "0.1.0", path = "../matrix_sdk_test_macros" }
|
||||
lazy_static = "1.4.0"
|
||||
ruma = { version = "0.1.2", features = ["client-api-c"] }
|
||||
serde = "1.0.122"
|
||||
serde_json = "1.0.61"
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
use std::{collections::HashMap, panic};
|
||||
|
||||
use http::Response;
|
||||
use matrix_sdk_common::{
|
||||
api::r0::sync::sync_events::Response as SyncResponse,
|
||||
pub use matrix_sdk_test_macros::async_test;
|
||||
use ruma::{
|
||||
api::{client::r0::sync::sync_events::Response as SyncResponse, IncomingResponse},
|
||||
events::{
|
||||
presence::PresenceEvent, AnyGlobalAccountDataEvent, AnySyncEphemeralRoomEvent,
|
||||
AnySyncRoomEvent, AnySyncStateEvent,
|
||||
},
|
||||
identifiers::{room_id, RoomId},
|
||||
IncomingResponse,
|
||||
room_id, RoomId,
|
||||
};
|
||||
pub use matrix_sdk_test_macros::async_test;
|
||||
use serde_json::Value as JsonValue;
|
||||
|
||||
pub mod test_json;
|
||||
|
|
Loading…
Reference in New Issue