IMAP commands append, close, copy, move, enable, expunge, login, logout, namespace and select implemented.

This commit is contained in:
Me
2023-06-27 18:28:07 +02:00
parent 0cd010f8ec
commit 34e21ef03f
37 changed files with 1972 additions and 479 deletions

View File

@@ -23,6 +23,13 @@
use std::path::PathBuf;
#[cfg(not(target_env = "msvc"))]
use jemallocator::Jemalloc;
#[cfg(not(target_env = "msvc"))]
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
#[cfg(test)]
pub mod directory;
#[cfg(test)]