ruma: Remove common module (ruma-common export)

This commit is contained in:
Jonas Platte 2022-04-08 13:29:35 +02:00 committed by Jonas Platte
parent ae095cc037
commit a567b9151d
2 changed files with 1 additions and 4 deletions

View File

@ -70,8 +70,6 @@
#![warn(missing_docs)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
#[doc(inline)]
pub use ruma_common as common;
#[doc(inline)]
pub use ruma_common::serde;

View File

@ -2,9 +2,8 @@ use std::{convert::TryFrom, env, process::exit};
use ruma::{
api::client::{alias::get_alias, membership::join_room_by_id, message::send_message_event},
common::TransactionId,
events::room::message::RoomMessageEventContent,
RoomAliasId,
RoomAliasId, TransactionId,
};
type HttpClient = ruma::client::http_client::HyperNativeTls;