Move dc_simplify.rs to simplify.rs

This commit is contained in:
Alexander Krotov
2019-12-20 03:32:22 +03:00
committed by holger krekel
parent fe4080d59f
commit c9f6e31ca9
3 changed files with 2 additions and 2 deletions

View File

@@ -58,6 +58,7 @@ pub mod peerstate;
pub mod pgp; pub mod pgp;
pub mod qr; pub mod qr;
pub mod securejoin; pub mod securejoin;
mod simplify;
mod smtp; mod smtp;
pub mod sql; pub mod sql;
pub mod stock; pub mod stock;
@@ -66,7 +67,6 @@ mod token;
mod dehtml; mod dehtml;
pub mod dc_receive_imf; pub mod dc_receive_imf;
mod dc_simplify;
pub mod dc_tools; pub mod dc_tools;
/// if set imap/incoming and smtp/outgoing MIME messages will be printed /// if set imap/incoming and smtp/outgoing MIME messages will be printed

View File

@@ -10,7 +10,6 @@ use crate::config::Config;
use crate::constants::Viewtype; use crate::constants::Viewtype;
use crate::contact::*; use crate::contact::*;
use crate::context::Context; use crate::context::Context;
use crate::dc_simplify::*;
use crate::dc_tools::*; use crate::dc_tools::*;
use crate::dehtml::dehtml; use crate::dehtml::dehtml;
use crate::e2ee; use crate::e2ee;
@@ -23,6 +22,7 @@ use crate::message;
use crate::param::*; use crate::param::*;
use crate::peerstate::Peerstate; use crate::peerstate::Peerstate;
use crate::securejoin::handle_degrade_event; use crate::securejoin::handle_degrade_event;
use crate::simplify::*;
use crate::stock::StockMessage; use crate::stock::StockMessage;
use crate::{bail, ensure}; use crate::{bail, ensure};