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. //!