mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 15:42:10 +03:00
122 lines
2.1 KiB
Rust
122 lines
2.1 KiB
Rust
//! # Delta Chat Core Library
|
|
|
|
#![recursion_limit = "256"]
|
|
#![forbid(unsafe_code)]
|
|
#![warn(
|
|
unused,
|
|
clippy::correctness,
|
|
missing_debug_implementations,
|
|
missing_docs,
|
|
clippy::all,
|
|
clippy::wildcard_imports,
|
|
clippy::needless_borrow,
|
|
clippy::cast_lossless,
|
|
clippy::unused_async,
|
|
clippy::explicit_iter_loop,
|
|
clippy::explicit_into_iter_loop,
|
|
clippy::cloned_instead_of_copied
|
|
)]
|
|
#![cfg_attr(not(test), forbid(clippy::indexing_slicing))]
|
|
#![cfg_attr(not(test), forbid(clippy::string_slice))]
|
|
#![allow(
|
|
clippy::match_bool,
|
|
clippy::mixed_read_write_in_expression,
|
|
clippy::bool_assert_comparison,
|
|
clippy::manual_split_once,
|
|
clippy::format_push_string,
|
|
clippy::bool_to_int_with_if
|
|
)]
|
|
|
|
#[macro_use]
|
|
extern crate num_derive;
|
|
#[macro_use]
|
|
extern crate smallvec;
|
|
#[macro_use]
|
|
extern crate rusqlite;
|
|
#[macro_use]
|
|
extern crate strum_macros;
|
|
|
|
#[macro_use]
|
|
pub mod log;
|
|
|
|
#[cfg(feature = "internals")]
|
|
#[macro_use]
|
|
pub mod sql;
|
|
#[cfg(not(feature = "internals"))]
|
|
#[macro_use]
|
|
mod sql;
|
|
|
|
pub mod headerdef;
|
|
|
|
pub(crate) mod events;
|
|
pub use events::*;
|
|
|
|
mod aheader;
|
|
mod blob;
|
|
pub mod chat;
|
|
pub mod chatlist;
|
|
pub mod config;
|
|
mod configure;
|
|
pub mod constants;
|
|
pub mod contact;
|
|
pub mod context;
|
|
mod decrypt;
|
|
pub mod download;
|
|
mod e2ee;
|
|
pub mod ephemeral;
|
|
mod imap;
|
|
pub mod imex;
|
|
pub mod key;
|
|
pub mod location;
|
|
mod login_param;
|
|
pub mod message;
|
|
mod mimefactory;
|
|
pub mod mimeparser;
|
|
pub mod oauth2;
|
|
mod param;
|
|
pub mod peerstate;
|
|
mod pgp;
|
|
pub mod provider;
|
|
pub mod qr;
|
|
pub mod qr_code_generator;
|
|
pub mod quota;
|
|
pub mod release;
|
|
mod scheduler;
|
|
pub mod securejoin;
|
|
mod simplify;
|
|
mod smtp;
|
|
pub mod stock_str;
|
|
mod sync;
|
|
mod timesmearing;
|
|
mod token;
|
|
mod update_helper;
|
|
pub mod webxdc;
|
|
#[macro_use]
|
|
mod dehtml;
|
|
mod authres;
|
|
pub mod color;
|
|
pub mod html;
|
|
pub mod net;
|
|
pub mod plaintext;
|
|
mod push;
|
|
pub mod summary;
|
|
|
|
mod debug_logging;
|
|
pub mod receive_imf;
|
|
pub mod tools;
|
|
|
|
pub mod accounts;
|
|
pub mod peer_channels;
|
|
pub mod reaction;
|
|
|
|
/// If set IMAP/incoming and SMTP/outgoing MIME messages will be printed.
|
|
pub const DCC_MIME_DEBUG: &str = "DCC_MIME_DEBUG";
|
|
|
|
#[cfg(test)]
|
|
mod test_utils;
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[cfg(fuzzing)]
|
|
pub mod fuzzing;
|