minidom: specify again that we handle XMPP primarily

Maxime “pep” Buquet created

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>

Change summary

minidom/Cargo.toml | 2 +-
minidom/src/lib.rs | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)

Detailed changes

minidom/Cargo.toml 🔗

@@ -8,7 +8,7 @@ authors = [
   "Astro <astro@spaceboyz.net>",
   "Maxime “pep” Buquet <pep@bouah.net>",
 ]
-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"

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