From 16292e1e6ff632bb24a2ee486163677b3e1e9143 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sun, 14 Nov 2021 14:32:19 +0100 Subject: [PATCH] minidom: specify again that we handle XMPP primarily MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- minidom/Cargo.toml | 2 +- minidom/src/lib.rs | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/minidom/Cargo.toml b/minidom/Cargo.toml index 8a1e5ab950a8d22ff4017867f8dd76925f68c9fc..9907d4ea97ad686e50306211c11aa3b20fe38fe9 100644 --- a/minidom/Cargo.toml +++ b/minidom/Cargo.toml @@ -8,7 +8,7 @@ authors = [ "Astro ", "Maxime “pep” Buquet ", ] -description = "A small, simple DOM implementation on top of quick-xml" +description = "A small, simple DOM implementation on top of quick-xml, targeting the subset of XML useful for XMPP" homepage = "https://gitlab.com/xmpp-rs/xmpp-rs" repository = "https://gitlab.com/xmpp-rs/xmpp-rs" documentation = "https://docs.rs/minidom" diff --git a/minidom/src/lib.rs b/minidom/src/lib.rs index 864519b61be2c2875f5c259da4cbd6a17f510bfb..6300cc580448e4824249afe8091c169a29b1c481 100644 --- a/minidom/src/lib.rs +++ b/minidom/src/lib.rs @@ -10,7 +10,8 @@ #![deny(missing_docs)] -//! A minimal DOM crate built on top of quick-xml. +//! A minimal DOM crate built on top of quick-xml, targeting exclusively the subset of XML useful +//! for XMPP. //! //! This library exports an `Element` struct which represents a DOM tree. //!