melib: Fix some old pre-intradoc rustdoc links
Run cargo lints / Lint on ${{ matrix.build }} (linux-amd64, ubuntu-latest, stable, x86_64-unknown-linux-gnu) (pull_request) Successful in 11m3s Details
Run Tests / Test on ${{ matrix.build }} (linux-amd64, ubuntu-latest, stable, x86_64-unknown-linux-gnu) (pull_request) Successful in 18m7s Details

Signed-off-by: Manos Pitsidianakis <manos@pitsidianak.is>
pull/346/head
Manos Pitsidianakis 2024-01-11 09:22:28 +02:00
parent e80ea9c9de
commit 60f26f9dae
Signed by: Manos Pitsidianakis
GPG Key ID: 7729C7707F7E09D0
2 changed files with 13 additions and 18 deletions

View File

@ -20,7 +20,7 @@
*/
//! Email addresses. Parsing functions are in
//! [melib::email::parser::address](../parser/address/index.html).
//! [melib::email::parser::address](super::parser::address).
use std::{
collections::HashSet,
convert::TryFrom,

View File

@ -77,27 +77,22 @@
*/
//! A crate that performs mail client operations such as
//! - Hold an [`Envelope`](./email/struct.Envelope.html) with methods convenient
//! for mail client use. (see module [`email`](./email/index.html))
//! - Abstract through mail storages through the
//! [`MailBackend`](./backends/trait.MailBackend.html) trait, and handle
//! read/writes/updates through it. (see module
//! [`backends`](./backends/index.html))
//! - Decode attachments (see module
//! [`email::attachments`](./email/attachments/index.html))
//! - Create new mail (see [`email::Draft`](./email/compose/struct.Draft.html))
//! - Send mail with an SMTP client (see module [`smtp`](./smtp/index.html))
//! - Manage an `addressbook` i.e. have contacts (see module
//! [`addressbook`](./addressbook/index.html))
//! - Hold an [`Envelope`] with methods convenient for mail client use. (see
//! module [`email`])
//! - Abstract through mail storages through the [`MailBackend`] trait, and
//! handle read/writes/updates through it. (see module [`backends`])
//! - Decode attachments (see module [`email::attachments`])
//! - Create new mail (see [`email::Draft`](email::compose::Draft))
//! - Send mail with an SMTP client (see module [`smtp`])
//! - Manage an `addressbook` i.e. have contacts (see module [`addressbook`])
//! - Build thread structures out of a list of mail via their `In-Reply-To` and
//! `References` header values (see module [`thread`](./thread/index.html))
//! `References` header values (see module [`thread`])
//!
//! Other exports are
//! - Basic mail account configuration to use with
//! [`backends`](./backends/index.html) (see module
//! [`conf`](./conf/index.html))
//! - Basic mail account configuration to use with [`backends`] (see module
//! [`conf`])
//! - A `debug` macro that works like `std::dbg` but for multiple threads. (see
//! [`debug` macro](./macro.debug.html))
//! [`debug` macro](debug!))
#[macro_use]
pub mod dbg {