1
0
mirror of https://gitlab.com/xmpp-rs/xmpp-rs.git synced 2024-06-13 03:25:44 +02:00

minidom: specify again that we handle XMPP primarily

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2021-11-14 14:32:19 +01:00
parent 8ddd488b7f
commit 16292e1e6f
No known key found for this signature in database
GPG Key ID: DEDA74AEECA9D0F2
2 changed files with 3 additions and 2 deletions

View File

@ -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"

View File

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