1[package]
2name = "minidom"
3version = "0.18.0"
4authors = [
5 "lumi <lumi@pew.im>",
6 "Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
7 "Bastien Orivel <eijebong+minidom@bananium.fr>",
8 "Astro <astro@spaceboyz.net>",
9 "Maxime “pep” Buquet <pep@bouah.net>",
10]
11description = "A small, simple DOM implementation on top of rxml, targeting the subset of XML useful for XMPP"
12homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
13repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
14documentation = "https://docs.rs/minidom"
15readme = "README.md"
16keywords = ["xml", "xmpp"]
17license = "MPL-2.0"
18edition = "2021"
19
20[badges]
21gitlab = { repository = "xmpp-rs/xmpp-rs" }
22
23[dependencies]
24rxml = { version = "0.13.3", default-features = false, features = [ "std", "compact_str" ] }
25thiserror = "2.0"
26
27[dev-dependencies]
28rxml = { version = "0.13.1", default-features = false, features = [ "std", "compact_str", "macros" ] }